Skip to content

Commit

Permalink
tests: lower model count reasonableness check from 200 to 100
Browse files Browse the repository at this point in the history
  • Loading branch information
tazlin committed Feb 10, 2024
1 parent 402f1fd commit 44397e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_convert_legacy_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def test_validate_converted_stable_diffusion_database(base_path_for_tests) -> No
assert model_host != ""

assert model_reference.root is not None
assert len(model_reference.root) >= 200
assert len(model_reference.root) >= 100

assert model_reference.root["stable_diffusion"] is not None
assert model_reference.root["stable_diffusion"].name == "stable_diffusion"
Expand Down

0 comments on commit 44397e5

Please sign in to comment.