Skip to content

Commit

Permalink
Skip test case on Windows because Python doesn't yield the ValueError
Browse files Browse the repository at this point in the history
  • Loading branch information
netromdk committed Jun 17, 2023
1 parent 1865aaa commit 24df805
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/general.py
Expand Up @@ -811,6 +811,9 @@ def test_process_syntax_error(self):
self.assertEmpty(proc_res.text)
self.assertEmpty(proc_res.bps)

# This test is ignored on Windows for now because it does not yield the value error that other
# platforms do.
@VerminTest.skipPlatform("win32")
def test_process_value_error(self):
# (Py3) ValueError: source code string cannot contain null bytes
# (Py2) TypeError: compile() expected string without null bytes
Expand Down

0 comments on commit 24df805

Please sign in to comment.