Skip to content

Commit

Permalink
skip deadlock test on win
Browse files Browse the repository at this point in the history
  • Loading branch information
msarahan committed Aug 24, 2016
1 parent 243b44b commit 1e88966
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from conda_build import build, api
from conda_build.metadata import MetaData
from conda_build.utils import rm_rf
from conda_build.utils import rm_rf, on_win

from .utils import testing_workdir, test_config, metadata_dir

Expand Down Expand Up @@ -55,6 +55,8 @@ def test_build_preserves_PATH(testing_workdir, test_config):


@pytest.mark.timeout(60)
@pytest.mark.skipif(on_win, reason=("Windows binary prefix replacement (for pip exes)"
" not length dependent"))
def test_env_creation_with_short_prefix_does_not_deadlock(caplog):
test_base = os.path.expanduser("~/cbtmp")
config = api.Config(croot=test_base, anaconda_upload=False, verbose=True)
Expand Down

0 comments on commit 1e88966

Please sign in to comment.