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 16cb4e7 commit c5dcc76Copy full SHA for c5dcc76
tests/test_run.py
@@ -1,4 +1,10 @@
1
def test_run():
2
+ try:
3
+ import ROOT
4
+ except ImportError:
5
+ print("ROOT not available, aborting test")
6
+ return True
7
+
8
import subprocess
9
chk = subprocess.run("python -m histgrinder.make_sample_file",
10
shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
0 commit comments