Skip to content

Commit bfa08d8

Browse files
committed
adds test
1 parent f440958 commit bfa08d8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/integration/annotation_import/test_model_run.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ def test_model_run(client, configured_project_with_label, rand_gen):
3434
fetch_model_run = client.get_model_run(model_run.uid)
3535
assert fetch_model_run == model_run
3636

37+
def test_model_run_no_config(rand_gen, model):
38+
name = rand_gen(str)
39+
model_run = model.create_model_run(name)
40+
assert model_run.name == name
41+
3742

3843
def test_model_run_delete(client, model_run):
3944
models_before = list(client.get_models())

0 commit comments

Comments
 (0)