From 42fc44b478635d81414a183873414940f04568ec Mon Sep 17 00:00:00 2001 From: Laurens Van Houtven <_@lvh.cc> Date: Wed, 10 Jul 2013 12:06:13 +0200 Subject: [PATCH] Remove unused py.test test skipping decorators --- test/base.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/base.py b/test/base.py index c9affeb4..09959898 100644 --- a/test/base.py +++ b/test/base.py @@ -61,6 +61,3 @@ def cwd_at(path): os.chdir(oldcwd) return wrapper return decorator - -py3_only = pytest.mark.skipif("sys.hexversion < 0x03000000") -py2_only = pytest.mark.skipif("sys.hexversion >= 0x03000000")