Skip to content

Commit

Permalink
Disable test_argv_quoting on Python 2.7 on non-Windows platform due to
Browse files Browse the repository at this point in the history
  • Loading branch information
int19h committed Mar 17, 2019
1 parent b75fe45 commit 61d5f44
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/func/test_multiproc.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,8 @@ def parent():
parent_session.wait_for_exit()


@pytest.mark.skipif(sys.version_info < (3, 0) and (platform.system() != 'Windows'),
reason='Bug #935')
def test_argv_quoting(pyfile, run_as, start_method):
@pyfile
def args():
Expand Down

0 comments on commit 61d5f44

Please sign in to comment.