From 89b6a008d2277e17832acf3afb16c6e71f88715c Mon Sep 17 00:00:00 2001 From: meejah Date: Thu, 1 Dec 2022 23:24:24 -0700 Subject: [PATCH] since 'coverage report' is what fails with disk-space on windows, try turning it off --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index fc95a0469..9b6dc8756 100644 --- a/tox.ini +++ b/tox.ini @@ -86,7 +86,7 @@ commands = coverage: python -b -m coverage run -m twisted.trial {env:TAHOE_LAFS_TRIAL_ARGS:--rterrors --reporter=timing} {posargs:{env:TEST_SUITE}} coverage: coverage combine coverage: coverage xml - coverage: coverage report +## coverage: coverage report [testenv:integration] basepython = python3 @@ -99,7 +99,7 @@ commands = # NOTE: 'run with "py.test --keep-tempdir -s -v integration/" to debug failures' py.test --timeout=1800 --coverage -s -v {posargs:integration} coverage combine - coverage report +## coverage report [testenv:codechecks]