From 85ec9a126911d79c191aa3efa7bfbfe4f29c26e0 Mon Sep 17 00:00:00 2001 From: Paul Ganssle Date: Sun, 5 Nov 2017 10:21:02 -0500 Subject: Add -v to pytest runner in CI --- .travis.yml | 2 +- appveyor.yml | 2 +- 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" -- cgit v1.2.3