Skip to content

Commit 58c0c4e

Browse files
committed
removing debugging print statement
1 parent fc73de0 commit 58c0c4e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/test_examples.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ def test_all_examples(tmp_examples):
77
# sort list so that fitBulkNi.py runs first
88
scripts.sort(key=lambda s: 0 if s.name == "fitBulkNi.py" else 1)
99
for script in scripts:
10-
script_relative_path = script.relative_to(tmp_examples).as_posix()
11-
print("hello", script_relative_path)
10+
script_relative_path = script.relative_to(tmp_examples)
1211
print(f"Testing {script_relative_path}")
1312
runpy.run_path(str(script), run_name="__main__")

0 commit comments

Comments
 (0)