@@ -57,28 +57,23 @@ envfile:
57
57
@mkdir -p $(shell dirname ${ENV_FILE}) && touch ${ENV_FILE}
58
58
@echo SECRET_KEY=\" ${GET_SECRET_KEY} \" > ${ENV_FILE}
59
59
60
- envfile_testing : envfile
60
+ envfile_testing : envfile
61
61
@echo PACKAGEDB_DB_USER=\" postgres\" >> ${ENV_FILE}
62
62
@echo PACKAGEDB_DB_PASSWORD=\" postgres\" >> ${ENV_FILE}
63
63
@echo SCANCODEIO_DB_USER=\" postgres\" >> ${ENV_FILE}
64
64
@echo SCANCODEIO_DB_PASSWORD=\" postgres\" >> ${ENV_FILE}
65
65
66
- doc8 :
67
- @echo " -> Run doc8 validation"
68
- @${ACTIVATE} doc8 --max-line-length 100 --ignore-path docs/_build/ --quiet docs/
69
-
70
66
valid :
71
67
@echo " -> Run Ruff format"
72
68
@${ACTIVATE} ruff format --exclude etc/scripts/ --exclude purldb-toolkit/ --exclude purl2vcs/
73
69
@echo " -> Run Ruff linter"
74
70
@${ACTIVATE} ruff check --fix --exclude etc/scripts/ --exclude purldb-toolkit/ --exclude purl2vcs/
75
71
76
- check :
72
+ check : check_docs
77
73
@echo " -> Run Ruff linter validation (pycodestyle, bandit, isort, and more)"
78
74
@${ACTIVATE} ruff check --exclude etc/scripts/ --exclude purldb-toolkit/ --exclude purl2vcs/
79
75
@echo " -> Run Ruff format validation"
80
76
@${ACTIVATE} ruff format --check --exclude etc/scripts/ --exclude purldb-toolkit/ --exclude purl2vcs/
81
- @$(MAKE ) doc8
82
77
83
78
clean :
84
79
@echo " -> Clean the Python env"
@@ -126,14 +121,13 @@ run_map:
126
121
${MANAGE} run_map
127
122
128
123
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
131
126
132
127
test_toolkit :
133
- ${ACTIVATE} ${PYTHON_EXE} -m pytest -vvs purldb-toolkit/
134
-
135
- test_clearcode : # create
128
+ ${ACTIVATE} pytest -vvs purldb-toolkit/
136
129
130
+ test_clearcode :
137
131
${ACTIVATE} ${DJSM_PDB} ${PYTHON_EXE} -m pytest -vvs clearcode clearindex
138
132
139
133
test_matchcode :
@@ -168,7 +162,7 @@ check_docs:
168
162
@echo " Check Sphinx Documentation build minimally"
169
163
@${ACTIVATE} sphinx-build -E -W docs/source build
170
164
@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
172
166
173
167
docker-images :
174
168
@echo " -> Build Docker services"
@@ -179,4 +173,5 @@ docker-images:
179
173
@mkdir -p dist/
180
174
@docker save minecode minecode_minecode nginx | gzip > dist/minecode-images-` git describe --tags` .tar.gz
181
175
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
0 commit comments