From 56cec5fa79106c0e8c02eb34bd8e5768ec52044d Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Tue, 22 Oct 2019 05:46:10 +0200 Subject: [PATCH] ci: use tox -vv This will display durations, and is useful in logs in general. --- .travis.yml | 2 +- azure-pipelines.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b77c3f59501..be30aa44e8f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -113,7 +113,7 @@ before_script: export _PYTEST_TOX_EXTRA_DEP=coverage-enable-subprocess fi -script: tox +script: tox -vv after_success: - | diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f18ce08877a..2ee1604a743 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -57,7 +57,7 @@ jobs: export COVERAGE_FILE="$PWD/.coverage" export COVERAGE_PROCESS_START="$PWD/.coveragerc" fi - python -m tox -e $(tox.env) + python -m tox -e $(tox.env) -vv displayName: 'Run tests' - task: PublishTestResults@2