summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorChris Hunt <chrahunt@gmail.com>2019-10-29 02:04:55 -0400
committerChris Hunt <chrahunt@gmail.com>2019-10-29 02:04:55 -0400
commita7edcc730e2df40cbe42627ff2622fbec253d5db (patch)
treeef8df731eaa3a7ac71b72c9eff7da12b40ec6690 /.appveyor.yml
parent3ff414be9f577e509d7177a9928d17ad8b1d8cf7 (diff)
downloadpip-a7edcc730e2df40cbe42627ff2622fbec253d5db.tar.gz
Normalize parallelization parameter.
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index bc76d6919..3852a8232 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -64,8 +64,8 @@ test_script:
subst T: $env:TEMP
$env:TEMP = "T:\"
$env:TMP = "T:\"
- tox -e py -- -m unit
+ tox -e py -- -m unit -n auto
if ($LastExitCode -eq 0 -and $env:RUN_INTEGRATION_TESTS -eq "True") {
- tox -e py -- --use-venv -m integration -n2 --durations=20
+ tox -e py -- --use-venv -m integration -n auto --durations=20
}
}