Skip to content

Commit

Permalink
Add ci-test to phony target (#944)
Browse files Browse the repository at this point in the history
  • Loading branch information
anniel-stripe authored Mar 17, 2023
1 parent 381cc2c commit b3b477a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ test: venv
test-nomock: venv
@${VENV_NAME}/bin/tox -p auto -- --nomock $(TOX_ARGS)

ci-test: venv
${VENV_NAME}/bin/python -m pip install -U tox-gh-actions
@${VENV_NAME}/bin/tox -p auto $(TOX_ARGS)

coveralls: venv
${VENV_NAME}/bin/python -m pip install -U coveralls
@${VENV_NAME}/bin/tox -e coveralls
Expand All @@ -39,8 +43,4 @@ update-version:

codegen-format: fmt

.PHONY: clean codegen-format coveralls fmt fmtcheck lint test test-nomock test-travis update-version venv

ci-test: venv
${VENV_NAME}/bin/python -m pip install -U tox-gh-actions
@${VENV_NAME}/bin/tox -p auto $(TOX_ARGS)
.PHONY: ci-test clean codegen-format coveralls fmt fmtcheck lint test test-nomock test-travis update-version venv

0 comments on commit b3b477a

Please sign in to comment.