Skip to content

Commit d49847b

Browse files
committed
WIP: add unit tests
1 parent 5065026 commit d49847b

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

unittests/test_cli.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1374,12 +1374,6 @@ def test_session_annotations(run_reframe):
13741374

13751375

13761376
def test_performance_compare(run_reframe, table_format):
1377-
def assert_no_crash(returncode, stdout, stderr, exitcode=0):
1378-
assert returncode == exitcode
1379-
assert 'Traceback' not in stdout
1380-
assert 'Traceback' not in stderr
1381-
return returncode, stdout, stderr
1382-
13831377
run_reframe2 = functools.partial(
13841378
run_reframe,
13851379
checkpath=['unittests/resources/checks/frontend_checks.py'],
@@ -1407,3 +1401,7 @@ def assert_no_crash(returncode, stdout, stderr, exitcode=0):
14071401
action='--performance-compare=now-1m:now/now-1d:now/mean:+foo/+bar'
14081402
), exitcode=1
14091403
)
1404+
1405+
1406+
def test_import_from_perflog(run_reframe):
1407+
pass

0 commit comments

Comments
 (0)