aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Ganssle <paul@ganssle.io>2017-11-05 10:21:02 -0500
committerPaul Ganssle <paul@ganssle.io>2017-11-05 10:21:27 -0500
commit85ec9a126911d79c191aa3efa7bfbfe4f29c26e0 (patch)
treefea58d5a378789fd9190957e499024eea0a02b18
parentaa46c73eafb9cfe36cdc0f6c5c5680edd6192c79 (diff)
downloaddateutil-85ec9a126911d79c191aa3efa7bfbfe4f29c26e0.tar.gz
Add -v to pytest runner in CI
-rw-r--r--.travis.yml2
-rw-r--r--appveyor.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 019b481..84fbb1f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -28,7 +28,7 @@ install:
- ./ci_tools/retry.sh python updatezinfo.py
script:
- - coverage run --omit=setup.py,dateutil/test/* -m pytest
+ - coverage run --omit=setup.py,dateutil/test/* -m pytest -v
after_success:
- codecov
diff --git a/appveyor.yml b/appveyor.yml
index f60d632..30d7130 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -32,6 +32,6 @@ install:
# This environment variable tells the test suite it's OK to mess with the time zone.
- set DATEUTIL_MAY_CHANGE_TZ=1
test_script:
- - "coverage run --omit=setup.py,dateutil/test/* -m pytest"
+ - "coverage run --omit=setup.py,dateutil/test/* -m pytest -v"
after_test:
- "codecov"