We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa4a903 commit 20d8aa9Copy full SHA for 20d8aa9
1 file changed
tests/functional/test_basic.py
@@ -10,7 +10,9 @@
10
TEST_PATH = os.path.dirname(os.path.realpath(__file__))
11
12
13
-@pytest.mark.parametrize("fname", [os.path.join(TEST_PATH, f) for f in glob.glob("**/*.bas", recursive=True)])
+@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
+)
16
@pytest.mark.timeout(15)
17
def test_basic(fname):
18
test.main(["-d", fname])
0 commit comments