Skip to content

Commit

Permalink
fix Makefile: py.test was deprecated in 2016 in favor of pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
clintonsteiner committed Dec 18, 2024
1 parent e666b1a commit d05a715
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.PHONY: test lint tox coverage dist

test:
py.test -sv jenkinsapi_tests
pytest -sv jenkinsapi_tests

lint:
pycodestyle
Expand All @@ -14,4 +14,4 @@ dist:
python setup.py sdist bdist_wheel

coverage:
py.test -sv --cov=jenkinsapi --cov-report=term-missing --cov-report=xml jenkinsapi_tests
pytest -sv --cov=jenkinsapi --cov-report=term-missing --cov-report=xml jenkinsapi_tests

0 comments on commit d05a715

Please sign in to comment.