Skip to content

Commit bb10133

Browse files
committed
Remove pytest 2.8.0 skipifs
1 parent 6bccc6c commit bb10133

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/test_django_settings_module.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,6 @@ def test_ds_after_user_conftest(testdir, monkeypatch):
102102
assert result.ret == 0
103103

104104

105-
@pytest.mark.skipif(pytest.__version__ == '2.8.0',
106-
reason='https://github.com/pytest-dev/pytest/issues/1073')
107105
def test_ds_in_pytest_configure(testdir, monkeypatch):
108106
monkeypatch.delenv('DJANGO_SETTINGS_MODULE')
109107
pkg = testdir.mkpydir('tpkg')
@@ -185,8 +183,6 @@ def test_user_count():
185183
])
186184

187185

188-
@pytest.mark.skipif(pytest.__version__ == '2.8.0',
189-
reason='https://github.com/pytest-dev/pytest/issues/1073')
190186
def test_settings_in_hook(testdir, monkeypatch):
191187
monkeypatch.delenv('DJANGO_SETTINGS_MODULE')
192188
testdir.makeconftest("""
@@ -231,8 +227,6 @@ def test_settings():
231227
assert result.ret == 0
232228

233229

234-
@pytest.mark.skipif(pytest.__version__ == '2.8.0',
235-
reason='https://github.com/pytest-dev/pytest/issues/1073')
236230
def test_debug_false(testdir, monkeypatch):
237231
monkeypatch.delenv('DJANGO_SETTINGS_MODULE')
238232
testdir.makeconftest("""

0 commit comments

Comments
 (0)