Skip to content

Commit

Permalink
tox: Always run pytest with -v to show test names
Browse files Browse the repository at this point in the history
This just makes it clearer that the test has successfully been run.
  • Loading branch information
cdown committed Mar 2, 2022
1 parent 745d5ee commit b51083f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tox.ini
Expand Up @@ -6,7 +6,7 @@ deps =
-rtests/requirements.txt
commands =
{basepython} --version
pytest
pytest -v
setenv=
release: HYPOTHESIS_PROFILE=release

Expand All @@ -23,7 +23,7 @@ deps =
coverage
commands =
coverage erase
pytest --cov=srt --cov-branch --cov-fail-under=100 --cov-report term-missing
pytest -v --cov=srt --cov-branch --cov-fail-under=100 --cov-report term-missing

[testenv:pylint]
skipsdist = True
Expand Down

0 comments on commit b51083f

Please sign in to comment.