Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

Commit

Permalink
add name to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Friedowitz committed Apr 4, 2024
1 parent 1049697 commit c0f5a35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/integration/test_finetuning.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def job_config(llm_model_path, text_dataset_path) -> FinetuningJobConfig:
save_steps=1,
save_strategy="epoch",
)
tracking_config = WandbRunConfig(name="test-finetuning-job")
tracking_config = WandbRunConfig(project="test-project")
ray_config = FinetuningRayConfig(num_workers=1, use_gpu=False)
return FinetuningJobConfig(
name="test-job",
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_lm_harness.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@pytest.fixture
def job_config(llm_model_path) -> LMHarnessJobConfig:
model_config = AutoModelConfig(path=format_file_path(llm_model_path))
tracking_config = WandbRunConfig(name="test-lm-harness-job")
tracking_config = WandbRunConfig(project="test-project")
evaluation_config = LMHarnessEvaluationConfig(tasks=["hellaswag"], limit=5)
return LMHarnessJobConfig(
name="test-job",
Expand Down

0 comments on commit c0f5a35

Please sign in to comment.