Skip to content

Commit

Permalink
pytest: Reduce default output verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsMichelsen committed Oct 28, 2019
1 parent 9137fb2 commit 853314f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pytest.ini
Expand Up @@ -3,7 +3,7 @@ testpaths = tests
# -p no:cacheprovider -> Disable caching. This is needed to make the
# integration tests work which are executed as site user.
# --durations=10: Show the 10 slowest tests
addopts = -p no:cacheprovider -rs -v --durations=10
addopts = -p no:cacheprovider -rs --durations=10
markers =
checks: Run all existing test cases for checks.
filterwarnings =
Expand Down
2 changes: 1 addition & 1 deletion tests/Makefile
Expand Up @@ -4,7 +4,7 @@ NODE_MODULES := ../node_modules
PIPENV := PIPENV_VENV_IN_PROJECT=true PIPENV_NOSPIN=true PIPENV_HIDE_EMOJIS=true pipenv
BANDIT := $(PIPENV) run bandit
COVERAGE := $(PIPENV) run coverage
PYTEST := $(PIPENV) run py.test -vv
PYTEST := $(PIPENV) run py.test
YAPF := $(PIPENV) run yapf
FUTURIZE := $(PIPENV) run ./test-futurize

Expand Down

0 comments on commit 853314f

Please sign in to comment.