Skip to content
Snippets Groups Projects
Commit 06b32fb6 authored by zphrs's avatar zphrs
Browse files

added shuffle tests to main

parent 4ab25308
No related branches found
No related tags found
No related merge requests found
......@@ -81,6 +81,7 @@ from .tests.asgn3.causal_consistency.causal_basic import CAUSAL_TESTS
from .tests.asgn3.eventual_consistency.convergence_basic import CONVERGENCE_TESTS
# from .tests.asgn3.view_change.view_change_basic import VIEW_CHANGE_TESTS
from .tests.proxy.basic_proxy import PROXY_TESTS
from .tests.shuffle.basic_shuffle import SHUFFLE_TESTS
TEST_SET = []
TEST_SET.append(TestCase("hello_cluster", hello_cluster))
......@@ -89,6 +90,7 @@ TEST_SET.extend(AVAILABILITY_TESTS)
TEST_SET.extend(CAUSAL_TESTS)
TEST_SET.extend(CONVERGENCE_TESTS)
TEST_SET.extend(PROXY_TESTS)
TEST_SET.extend(SHUFFLE_TESTS)
# TEST_SET.extend(VIEW_CHANGE_TESTS)
# set to True to stop at the first failing test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment