File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020 os : windows
2121 additional_variables :
2222 COVERAGE_IGNORE_WINDOWS : ' # pragma: windows no cover'
23- TOX_TESTENV_PASSENV : COVERAGE_IGNORE_WINDOWS
23+ TOX_TESTENV_PASSENV : COVERAGE_IGNORE_WINDOWS RUSTUP_HOME
2424 TEMP : C:\Temp # remove when dropping python2
25- pre_test :
26- - template : step--rust-install.yml
2725- template : job--python-tox.yml@asottile
2826 parameters :
2927 toxenvs : [py37]
Original file line number Diff line number Diff line change 44import os .path
55import re
66import shutil
7+ import sys
78
89import cfgv
910import mock
@@ -717,6 +718,10 @@ def local_python_config():
717718 return {'repo' : 'local' , 'hooks' : hooks }
718719
719720
721+ @pytest .mark .xfail ( # pragma: windows no cover
722+ sys .platform == 'win32' ,
723+ reason = 'microsoft/azure-pipelines-image-generation#989' ,
724+ )
720725def test_local_python_repo (store , local_python_config ):
721726 hook = _get_hook (local_python_config , store , 'foo' )
722727 # language_version should have been adjusted to the interpreter version
You can’t perform that action at this time.
0 commit comments