Skip to content

Commit b7ce7ca

Browse files
authored
Fixing docker deploy (#40)
1 parent 78bd9cb commit b7ce7ca

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ format_doc:
3333
.PHONY: init
3434
init:
3535
python -m pip install --upgrade pip
36-
python -m pip install -r requirements.txt -r test-requirements.txt
36+
python -m pip install -r requirements.txt -r lint-requirements.txt -r test-requirements.txt
3737

3838
.PHONY: init-docker
3939
init-docker:
@@ -59,7 +59,7 @@ test:
5959
python -Werror -m pytest --cov tests/
6060

6161
.PHONY: test-all
62-
test-all: lint
62+
test-all:
6363
tox $(SRC)
6464

6565
.PHONY: update

lint-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
flake8

test-requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
pytest
22
pytest-cov
3-
flake8
43
mock; python_version < "3"
54
black; python_version > "3.7"

0 commit comments

Comments
 (0)