Skip to content

Commit 7ded8d8

Browse files
Remove all mark.skip for python < 3.8
Co-authored-by: Bruno Oliveira <[email protected]>
1 parent bb4bd7e commit 7ded8d8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

testing/_py/test_local.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def test_visit_norecurse(self, path1):
207207

208208
@pytest.mark.parametrize(
209209
"fil",
210-
["*dir", "*dir", pytest.mark.skip("sys.version_info < (3,6)")(b"*dir")],
210+
["*dir", "*dir", b"*dir"],
211211
)
212212
def test_visit_filterfunc_is_string(self, path1, fil):
213213
lst = []
@@ -461,12 +461,10 @@ def test_fspath_func_match_strpath(self, path1):
461461

462462
assert fspath(path1) == path1.strpath
463463

464-
@pytest.mark.skip("sys.version_info < (3,6)")
465464
def test_fspath_open(self, path1):
466465
f = path1.join("opentestfile")
467466
open(f)
468467

469-
@pytest.mark.skip("sys.version_info < (3,6)")
470468
def test_fspath_fsencode(self, path1):
471469
from os import fsencode
472470

0 commit comments

Comments
 (0)