Skip to content

Commit f45ea1a

Browse files
committed
Remove verbose flag from pytest on travis.
Makes it easier to see what's gone wrong, esp. if a linting issue!
1 parent e894bb1 commit f45ea1a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ install: 'pip install -e .[test]'
1616

1717
script:
1818
- flake8
19-
- pytest -v --cov
19+
- pytest --cov
2020

2121
after_success:
2222
- codecov
@@ -25,8 +25,8 @@ jobs:
2525
include:
2626
- stage: Local integration test
2727
python: '3.8'
28-
script: pytest -v -m local
28+
script: pytest -m local
2929

3030
- stage: Docker integration test
3131
python: '3.8'
32-
script: travis_wait pytest -v -m docker
32+
script: travis_wait pytest -m docker

0 commit comments

Comments
 (0)