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 a4edb28 commit 5b118d7Copy full SHA for 5b118d7
Makefile
@@ -51,7 +51,7 @@ lint: ## check style with flake8
51
flake8 compose_x_common tests
52
53
test: ## run tests quickly with the default Python
54
- pytest
+ pytest || poetry run pytest
55
56
test-all: ## run tests on every Python version with tox
57
tox
@@ -93,6 +93,6 @@ install: clean ## install the package to the active Python's site-packages
93
94
95
conform : ## Conform to a standard of coding syntax
96
- isort --profile black src
97
- black src tests
+ isort --profile black src || poetry run isort --profile black src
+ black src tests || poetry run black src tests
98
find src -name "*.json" -type f -exec sed -i '1s/^\xEF\xBB\xBF//' {} +
0 commit comments