We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 789ab4e commit c0be697Copy full SHA for c0be697
Makefile
@@ -2,14 +2,15 @@ PYTHON = python3
2
PIP = pip3
3
CQC_DIR = cqc
4
EXAMPLES = examples
5
+TESTS = tests
6
7
clean: _clear_pyc _clear_build
8
9
_clear_pyc:
10
@find . -name '*.pyc' -delete
11
12
lint:
- @${PYTHON} -m flake8 ${CQC_DIR} ${EXAMPLES}
13
+ @${PYTHON} -m flake8 ${CQC_DIR} ${EXAMPLES} ${TESTS}
14
15
python-deps:
16
@cat requirements.txt | xargs -n 1 -L 1 $(PIP) install
@@ -18,9 +19,9 @@ _verified:
18
19
@echo "CQC-Python is verified!"
20
21
tests:
- @${PYTHON} -m pytest tests
22
+ @${PYTHON} -m pytest ${TESTS}
23
-verify: clean python-deps lint _verified
24
+verify: clean python-deps lint tests _verified
25
26
_remove_build:
27
@rm -f -r build
0 commit comments