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 fc73de0 commit 58c0c4eCopy full SHA for 58c0c4e
tests/test_examples.py
@@ -7,7 +7,6 @@ def test_all_examples(tmp_examples):
7
# sort list so that fitBulkNi.py runs first
8
scripts.sort(key=lambda s: 0 if s.name == "fitBulkNi.py" else 1)
9
for script in scripts:
10
- script_relative_path = script.relative_to(tmp_examples).as_posix()
11
- print("hello", script_relative_path)
+ script_relative_path = script.relative_to(tmp_examples)
12
print(f"Testing {script_relative_path}")
13
runpy.run_path(str(script), run_name="__main__")
0 commit comments