Skip to content

Commit f49214f

Browse files
committed
Update Makefile to use pipenv
1 parent a0c13e9 commit f49214f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,23 +40,23 @@ ci-init :
4040

4141
.PHONY : ci
4242
ci :
43-
pytest -m "not ratelimit"
43+
pipenv run pytest -m "not ratelimit"
4444

4545
.PHONY : toxtest
4646
toxtest : tox.ini
47-
tox
47+
pipenv run tox
4848

4949
.PHONY : pytest
5050
pytest :
51-
pytest -m "not ratelimit"
51+
pipenv run pytest -m "not ratelimit"
5252

5353
.PHONY : pytest-rate-limit
54-
pytest-rate-limit : local/environment.sh
55-
pytest -m "ratelimit"
54+
pytest-rate-limit :
55+
pipenv run pytest -m "ratelimit"
5656

5757
.PHONY : lint
5858
lint :
59-
flake8 ciscosparkapi
59+
pipenv run flake8 ciscosparkapi
6060

6161

6262
# Git recipes

0 commit comments

Comments
 (0)