skip test for pyo on pypy since pypy doesnt do pyo
This commit is contained in:
parent
91c41cd6b3
commit
db8fbe7661
|
@ -350,6 +350,7 @@ def test_no_bytecode():
|
|||
monkeypatch.setenv("PYTHONDONTWRITEBYTECODE", "1")
|
||||
assert testdir.runpytest().ret == 0
|
||||
|
||||
@pytest.mark.skipif('"__pypy__" in sys.modules')
|
||||
def test_pyc_vs_pyo(self, testdir, monkeypatch):
|
||||
testdir.makepyfile("""
|
||||
import pytest
|
||||
|
|
Loading…
Reference in New Issue