Skip to content

Commit 20d8aa9

Browse files
committed
test: fix testing glob path!
1 parent fa4a903 commit 20d8aa9

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/functional/test_basic.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
TEST_PATH = os.path.dirname(os.path.realpath(__file__))
1111

1212

13-
@pytest.mark.parametrize("fname", [os.path.join(TEST_PATH, f) for f in glob.glob("**/*.bas", recursive=True)])
13+
@pytest.mark.parametrize(
14+
"fname", [os.path.join(TEST_PATH, f) for f in glob.glob(os.path.join(TEST_PATH, "**", "*.bas"), recursive=True)]
15+
)
1416
@pytest.mark.timeout(15)
1517
def test_basic(fname):
1618
test.main(["-d", fname])

0 commit comments

Comments
 (0)