Skip to content
Snippets Groups Projects
Commit ef878eca authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Skip Python bytecode testing where we do not have an expected diff. (Closes:...

Skip Python bytecode testing where we do not have an expected diff. (Closes: #284)
parent 34df4921
No related branches found
No related tags found
No related merge requests found
Pipeline #307938 passed with stages
in 27 minutes and 8 seconds
......@@ -47,6 +47,10 @@ def differences(pyc1, pyc2):
return pyc1.compare(pyc2).details
@skipif(
sys.version_info < (3, 9),
reason="pyc_expected_diff generated on Python 3.9",
)
def test_diff(differences):
assert_diff_startswith(
differences[0],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment