Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e08d373 commit 071cc42Copy full SHA for 071cc42
1 file changed
tests/repository_test.py
@@ -4,6 +4,7 @@
4
import os.path
5
import re
6
import shutil
7
+import sys
8
9
import cfgv
10
import mock
@@ -717,6 +718,10 @@ def local_python_config():
717
718
return {'repo': 'local', 'hooks': hooks}
719
720
721
+@pytest.mark.xfail( # pragma: windows no cover
722
+ sys.platform == 'win32',
723
+ reason='microsoft/azure-pipelines-image-generation#989',
724
+)
725
def test_local_python_repo(store, local_python_config):
726
hook = _get_hook(local_python_config, store, 'foo')
727
# language_version should have been adjusted to the interpreter version
0 commit comments