diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-12-05 07:13:36 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-12-05 07:13:36 -0500 |
commit | 419d901430f2d90306b95e96291dad24115de898 (patch) | |
tree | 26ed35c414025947cfa1a6a7dbf1c61aeb986ed0 | |
parent | ca8012cb56ae7456c8d3348e4c80c83072e303b9 (diff) | |
download | python-coveragepy-git-419d901430f2d90306b95e96291dad24115de898.tar.gz |
No xdist on appveyor
-rw-r--r-- | appveyor.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml index 914e2974..7697cba7 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,6 +9,10 @@ environment: CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\ci\\run_with_env.cmd" + # Parallel pytest gets tangled up with tests that try to create and destroy + # .pth files in the shared virtualenv. Disable parallel tests. + PYTEST_ADDOPTS: "-n 0" + matrix: - JOB: "2.6 32-bit" TOXENV: "py26" |