summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorChris Hunt <chrahunt@gmail.com>2019-07-22 18:00:53 -0400
committerChris Hunt <chrahunt@gmail.com>2019-07-22 18:05:46 -0400
commit82f554f461a4af69ddae3cf135e92ee7e34ac682 (patch)
tree5b7c0fc89e8ba7ecdc05b08c471c2a816e0add92 /.appveyor.yml
parent8582f7e40f3083e6713057122edb1143a1cd784d (diff)
downloadpip-82f554f461a4af69ddae3cf135e92ee7e34ac682.tar.gz
Ignore new warnings traced on tox invocation.
See pypa/packaging#170.
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 4aa5e217b..2819e0521 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -65,6 +65,9 @@ test_script:
subst T: $env:TEMP
$env:TEMP = "T:\"
$env:TMP = "T:\"
+ # Workaround warnings traced in packaging.requirements with pyparsing 2.4.1.
+ # See pypa/packaging#170 and tox-dev/tox#1375.
+ $env:PYTHONWARNINGS = "ignore:warn_ungrouped_named_tokens_in_collection"
tox -e py -- -m unit
if ($LastExitCode -eq 0 -and $env:RUN_INTEGRATION_TESTS -eq "True") {
tox -e py -- --use-venv -m integration -n2 --durations=20