Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

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 20, 2019
1 parent 28ed9b3 commit 6a785ab
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 6a785ab

Please sign in to comment.