We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78bd9cb commit b7ce7caCopy full SHA for b7ce7ca
3 files changed
Makefile
@@ -33,7 +33,7 @@ format_doc:
33
.PHONY: init
34
init:
35
python -m pip install --upgrade pip
36
- python -m pip install -r requirements.txt -r test-requirements.txt
+ python -m pip install -r requirements.txt -r lint-requirements.txt -r test-requirements.txt
37
38
.PHONY: init-docker
39
init-docker:
@@ -59,7 +59,7 @@ test:
59
python -Werror -m pytest --cov tests/
60
61
.PHONY: test-all
62
-test-all: lint
+test-all:
63
tox $(SRC)
64
65
.PHONY: update
lint-requirements.txt
@@ -0,0 +1 @@
1
+flake8
test-requirements.txt
@@ -1,5 +1,4 @@
pytest
2
pytest-cov
3
-flake8
4
mock; python_version < "3"
5
black; python_version > "3.7"
0 commit comments