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 9ff6506 commit 3092b18Copy full SHA for 3092b18
graalpython/com.oracle.graal.python.test/src/runner.py
@@ -742,7 +742,7 @@ def get_tag_file(self):
742
def configure_test_file(path: Path) -> TestFile:
743
config = config_for_file(path)
744
resolved = path.resolve().relative_to(config.configdir)
745
- name = str(resolved).removesuffix('.py')
+ name = str(resolved).replace(os.sep, '/').removesuffix('.py')
746
test_config = TestFileConfig()
747
for rule in config.rules:
748
if rule.matches(name):
0 commit comments