Skip to content

Commit

Permalink
xfail default language version check for azure pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed May 31, 2019
1 parent e08d373 commit 071cc42
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/repository_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import os.path
import re
import shutil
import sys

import cfgv
import mock
Expand Down Expand Up @@ -717,6 +718,10 @@ def local_python_config():
return {'repo': 'local', 'hooks': hooks}


@pytest.mark.xfail( # pragma: windows no cover
sys.platform == 'win32',
reason='microsoft/azure-pipelines-image-generation#989',
)
def test_local_python_repo(store, local_python_config):
hook = _get_hook(local_python_config, store, 'foo')
# language_version should have been adjusted to the interpreter version
Expand Down

0 comments on commit 071cc42

Please sign in to comment.