From f9feef6808c250b0c98d7d35580e3fad75d17439 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Mon, 18 Nov 2019 23:13:21 +0100 Subject: [PATCH] Revert "ci: use tox -vv" `tox -vv` is too verbose, and was only used as a hack to get the output of durations. As for information in logs `-v` could be used maybe still, but I've decided to revert it for now. This reverts commit 56cec5fa79106c0e8c02eb34bd8e5768ec52044d. --- .travis.yml | 2 +- azure-pipelines.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 310d7093bb0..e3edbfe9b7c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -108,7 +108,7 @@ before_script: export _PYTEST_TOX_EXTRA_DEP=coverage-enable-subprocess fi -script: tox -vv +script: tox after_success: - | diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2ee1604a743..f18ce08877a 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) -vv + python -m tox -e $(tox.env) displayName: 'Run tests' - task: PublishTestResults@2