Skip to content

Commit 1fd941e

Browse files
author
Istemi Ekin Akkus
committed
minor bug fix in tests
1 parent 537200b commit 1fd941e

File tree

1 file changed

+8
-2
lines changed
  • tests/performance_interaction_latency

1 file changed

+8
-2
lines changed

tests/performance_interaction_latency/test.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,23 +37,29 @@ def setUpClass(self):
3737
#@unittest.skip("")
3838
def test_function_interaction_latency(self):
3939
test = MFNTest(test_name='function_interaction_latency_checkpoints_off', workflow_filename='wf_function_interaction_latency_checkpoints_off.json')
40-
test.exec_tests(self._test_tuple_list, check_duration=True, print_report=False)
40+
test.exec_tests(self._test_tuple_list, check_duration=True, print_report=False, should_undeploy=False)
4141

4242
logs = test.get_workflow_logs(num_lines=1000)
4343

4444
self._get_and_print_statistics(test, logs, False)
4545

4646
#test.plot_latency_breakdown(COUNT_EXECUTIONS)
4747

48+
test.undeploy_workflow()
49+
test.cleanup()
50+
4851
test = MFNTest(test_name='function_interaction_latency_checkpoints_on', workflow_filename='wf_function_interaction_latency_checkpoints_on.json')
49-
test.exec_tests(self._test_tuple_list, check_duration=True, print_report=False)
52+
test.exec_tests(self._test_tuple_list, check_duration=True, print_report=False, should_undeploy=False)
5053

5154
logs = test.get_workflow_logs(num_lines=1000)
5255

5356
self._get_and_print_statistics(test, logs, True)
5457

5558
#test.plot_latency_breakdown(COUNT_EXECUTIONS)
5659

60+
test.undeploy_workflow()
61+
test.cleanup()
62+
5763
#@unittest.skip("")
5864
def test_chain_response_latency(self):
5965
test = MFNTest(test_name='chain_checkpoints_off', workflow_filename='wf_chain_checkpoints_off.json')

0 commit comments

Comments
 (0)