mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 06:44:46 +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 wrapper
|
||||||
return decorator
|
return decorator
|
||||||
|
|
||||||
py3_only = pytest.mark.skipif("not is_py3k")
|
py3_only = pytest.mark.skipif("sys.hexversion < 0x03000000")
|
||||||
py2_only = pytest.mark.skipif("is_py3k")
|
py2_only = pytest.mark.skipif("sys.hexversion >= 0x03000000")
|
||||||
|
|||||||
Reference in New Issue
Block a user