|
1 | 1 | # SPDX-License-Identifier: Apache-2.0 |
2 | 2 | # |
3 | | -# http://nexb.com and https://github.com/nexB/scancode.io |
| 3 | +# http://nexb.com and https://github.com/aboutcode-org/scancode.io |
4 | 4 | # The ScanCode.io software is licensed under the Apache License version 2.0. |
5 | 5 | # Data generated with ScanCode.io is provided as-is without warranties. |
6 | 6 | # ScanCode is a trademark of nexB Inc. |
|
18 | 18 | # for any legal advice. |
19 | 19 | # |
20 | 20 | # ScanCode.io is a free software code scanning tool from nexB Inc. and others. |
21 | | -# Visit https://github.com/nexB/scancode.io for support and download. |
| 21 | +# Visit https://github.com/aboutcode-org/scancode.io for support and download. |
22 | 22 |
|
23 | 23 | # Python version can be specified with `$ PYTHON_EXE=python3.x make conf` |
24 | 24 | PYTHON_EXE?=python3 |
@@ -86,7 +86,7 @@ check-deploy: |
86 | 86 |
|
87 | 87 | clean: |
88 | 88 | @echo "-> Clean the Python env" |
89 | | - rm -rf .venv/ .*_cache/ *.egg-info/ build/ dist/ |
| 89 | + rm -rf .venv/ .*cache/ *.egg-info/ build/ dist/ |
90 | 90 | find . -type f -name '*.py[co]' -delete -o -type d -name __pycache__ -delete |
91 | 91 |
|
92 | 92 | migrate: |
@@ -125,6 +125,10 @@ test: |
125 | 125 | @echo "-> Run the test suite" |
126 | 126 | ${MANAGE} test --noinput |
127 | 127 |
|
| 128 | +fasttest: |
| 129 | + @echo "-> Run the test suite without the PipelinesIntegrationTest" |
| 130 | + ${MANAGE} test --noinput --exclude-tag slow |
| 131 | + |
128 | 132 | worker: |
129 | 133 | ${MANAGE} rqworker --worker-class scancodeio.worker.ScanCodeIOWorker --queue-class scancodeio.worker.ScanCodeIOQueue --verbosity 2 |
130 | 134 |
|
@@ -152,4 +156,4 @@ offline-package: docker-images |
152 | 156 | @mkdir -p dist/ |
153 | 157 | @tar -cf dist/scancodeio-offline-package-`git describe --tags`.tar build/ |
154 | 158 |
|
155 | | -.PHONY: virtualenv conf dev envfile install doc8 check valid check-deploy clean migrate upgrade postgresdb sqlitedb backupdb run test docs bump docker-images offline-package |
| 159 | +.PHONY: virtualenv conf dev envfile install doc8 check valid check-deploy clean migrate upgrade postgresdb sqlitedb backupdb run test fasttest docs bump docker-images offline-package |
0 commit comments