Skip to content

Commit d7d9583

Browse files
pombredanneJonoYang
authored andcommittedDec 10, 2024
Improve duplicated targets in Makefile
Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent dd6a8fd commit d7d9583

File tree

2 files changed

+10
-15
lines changed

2 files changed

+10
-15
lines changed
 

‎Makefile

+9-14
Original file line numberDiff line numberDiff line change
@@ -57,28 +57,23 @@ envfile:
5757
@mkdir -p $(shell dirname ${ENV_FILE}) && touch ${ENV_FILE}
5858
@echo SECRET_KEY=\"${GET_SECRET_KEY}\" > ${ENV_FILE}
5959

60-
envfile_testing: envfile
60+
envfile_testing: envfile
6161
@echo PACKAGEDB_DB_USER=\"postgres\" >> ${ENV_FILE}
6262
@echo PACKAGEDB_DB_PASSWORD=\"postgres\" >> ${ENV_FILE}
6363
@echo SCANCODEIO_DB_USER=\"postgres\" >> ${ENV_FILE}
6464
@echo SCANCODEIO_DB_PASSWORD=\"postgres\" >> ${ENV_FILE}
6565

66-
doc8:
67-
@echo "-> Run doc8 validation"
68-
@${ACTIVATE} doc8 --max-line-length 100 --ignore-path docs/_build/ --quiet docs/
69-
7066
valid:
7167
@echo "-> Run Ruff format"
7268
@${ACTIVATE} ruff format --exclude etc/scripts/ --exclude purldb-toolkit/ --exclude purl2vcs/
7369
@echo "-> Run Ruff linter"
7470
@${ACTIVATE} ruff check --fix --exclude etc/scripts/ --exclude purldb-toolkit/ --exclude purl2vcs/
7571

76-
check:
72+
check: check_docs
7773
@echo "-> Run Ruff linter validation (pycodestyle, bandit, isort, and more)"
7874
@${ACTIVATE} ruff check --exclude etc/scripts/ --exclude purldb-toolkit/ --exclude purl2vcs/
7975
@echo "-> Run Ruff format validation"
8076
@${ACTIVATE} ruff format --check --exclude etc/scripts/ --exclude purldb-toolkit/ --exclude purl2vcs/
81-
@$(MAKE) doc8
8277

8378
clean:
8479
@echo "-> Clean the Python env"
@@ -126,14 +121,13 @@ run_map:
126121
${MANAGE} run_map
127122

128123
test_purldb:
129-
${ACTIVATE} ${DJSM_PDB} ${PYTHON_EXE} -m pytest -vvs minecode packagedb purl2vcs purldb_project purldb_public_project --ignore packagedb/tests/test_throttling.py
130-
${ACTIVATE} ${DJSM_PDB} ${PYTHON_EXE} -m pytest -vvs packagedb/tests/test_throttling.py
124+
${ACTIVATE} ${DJSM_PDB} pytest -vvs --lf minecode packagedb purl2vcs purldb_project purldb_public_project --ignore packagedb/tests/test_throttling.py
125+
${ACTIVATE} ${DJSM_PDB} pytest -vvs --lf packagedb/tests/test_throttling.py
131126

132127
test_toolkit:
133-
${ACTIVATE} ${PYTHON_EXE} -m pytest -vvs purldb-toolkit/
134-
135-
test_clearcode: # create
128+
${ACTIVATE} pytest -vvs purldb-toolkit/
136129

130+
test_clearcode:
137131
${ACTIVATE} ${DJSM_PDB} ${PYTHON_EXE} -m pytest -vvs clearcode clearindex
138132

139133
test_matchcode:
@@ -168,7 +162,7 @@ check_docs:
168162
@echo "Check Sphinx Documentation build minimally"
169163
@${ACTIVATE} sphinx-build -E -W docs/source build
170164
@echo "Check for documentation style errors"
171-
@${ACTIVATE} doc8 --max-line-length 100 docs/source --ignore D000 --quiet
165+
@${ACTIVATE} doc8 --max-line-length 100 docs/source --ignore-path docs/_build/ --ignore D000 --quiet
172166

173167
docker-images:
174168
@echo "-> Build Docker services"
@@ -179,4 +173,5 @@ docker-images:
179173
@mkdir -p dist/
180174
@docker save minecode minecode_minecode nginx | gzip > dist/minecode-images-`git describe --tags`.tar.gz
181175

182-
.PHONY: virtualenv conf dev envfile isort black doc8 valid check clean migrate postgres run test shell clearsync clearindex index_packages bump docs docker-images test_purldb test_matchcode test_toolkit test_clearcode
176+
# keep this sorted
177+
.PHONY: black bump check check_docs clean `clearindex clearsync conf dev docker-images docs envfile envfile_testing index_packages isort migrate postgres postgres_matchcodeio priority_queue run run_map run_matchcodeio run_visit seed shell test test_clearcode test_matchcode test_purldb test_toolkit valid virtualenv

‎azure-pipelines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
image_name: ubuntu-22.04
4040
python_versions: ['3.10']
4141
test_suites:
42-
all: make check_docs
42+
all: make docs check_docs
4343

4444
- template: etc/ci/azure-posix.yml
4545
parameters:

0 commit comments

Comments
 (0)
Please sign in to comment.