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 5daf7b1 commit 89f71f7Copy full SHA for 89f71f7
Makefile
@@ -10,13 +10,13 @@ entr_warn:
10
@echo "----------------------------------------------------------"
11
12
isort:
13
- isort `${PY_FILES}`
+ poetry run isort `${PY_FILES}`
14
15
black:
16
- black `${PY_FILES}` --skip-string-normalization
+ poetry run black `${PY_FILES}` --skip-string-normalization
17
18
test:
19
- py.test $(test)
+ poetry run py.test $(test)
20
21
watch_test:
22
if command -v entr > /dev/null; then ${PY_FILES} | entr -c $(MAKE) test; else $(MAKE) test entr_warn; fi
0 commit comments