mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
py.test skipping evaluation rules are kinda silly, and in this case completely useless
This commit is contained in:
@@ -62,5 +62,5 @@ def cwd_at(path):
|
||||
return wrapper
|
||||
return decorator
|
||||
|
||||
py3_only = pytest.mark.skipif("not is_py3k")
|
||||
py2_only = pytest.mark.skipif("is_py3k")
|
||||
py3_only = pytest.mark.skipif("sys.hexversion < 0x03000000")
|
||||
py2_only = pytest.mark.skipif("sys.hexversion >= 0x03000000")
|
||||
|
||||
Reference in New Issue
Block a user