Skip to content

Commit

Permalink
ensure order
Browse files Browse the repository at this point in the history
  • Loading branch information
ByronHsu committed Dec 8, 2024
1 parent e150397 commit e49d3a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust/py_test/test_launch_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def tearDownClass(cls):
for process in cls.other_process:
kill_process_tree(process.pid)

def test_mmlu(self):
def test_1_mmlu(self):
# DP size = 2
TestLaunchServer.process = popen_launch_router(
self.model,
Expand All @@ -144,7 +144,7 @@ def test_mmlu(self):
msg = f"MMLU test {'passed' if passed else 'failed'} with score {score:.3f} (threshold: {THRESHOLD})"
self.assertGreaterEqual(score, THRESHOLD, msg)

def test_add_and_remove_worker(self):
def test_2_add_and_remove_worker(self):
# DP size = 1
TestLaunchServer.process = popen_launch_router(
self.model,
Expand Down

0 comments on commit e49d3a1

Please sign in to comment.