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 a0c13e9 commit f49214fCopy full SHA for f49214f
Makefile
@@ -40,23 +40,23 @@ ci-init :
40
41
.PHONY : ci
42
ci :
43
- pytest -m "not ratelimit"
+ pipenv run pytest -m "not ratelimit"
44
45
.PHONY : toxtest
46
toxtest : tox.ini
47
- tox
+ pipenv run tox
48
49
.PHONY : pytest
50
pytest :
51
52
53
.PHONY : pytest-rate-limit
54
-pytest-rate-limit : local/environment.sh
55
- pytest -m "ratelimit"
+pytest-rate-limit :
+ pipenv run pytest -m "ratelimit"
56
57
.PHONY : lint
58
lint :
59
- flake8 ciscosparkapi
+ pipenv run flake8 ciscosparkapi
60
61
62
# Git recipes
0 commit comments