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 0390361 commit cccf157Copy full SHA for cccf157
tests/test_parser.py
@@ -4,12 +4,13 @@
4
5
def test_case01():
6
result = os.system('python ./source/zimonGrafanaIntf.py')
7
- assert result > 0
+ print(result)
8
+ assert result == 0
9
10
11
def test_case02():
12
result = os.system('python ./source/zimonGrafanaIntf.py -a 2')
13
14
15
16
def test_case03():
@@ -19,7 +20,7 @@ def test_case03():
19
20
21
def test_case04():
22
result = os.system('python ./source/zimonGrafanaIntf.py -c 10 -m "/opt/registry/certs"')
23
24
25
26
def test_case05():
0 commit comments