Skip to content

Commit

Permalink
ci: fix: don't ignore last_use during ci
Browse files Browse the repository at this point in the history
  • Loading branch information
tazlin committed Dec 25, 2023
1 parent 4868ec2 commit 7840f52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_horde_lora.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def test_text_to_image_lora_red(
last_use = shared_model_manager.manager.lora.get_lora_last_use("GlowingRunesAI")
assert last_use
if not (last_use > datetime.now() - timedelta(minutes=1)):
pytest.skip("Lora last use not updated")
raise Exception("Last use of lora was not updated")

def test_text_to_image_lora_blue(
self,
Expand Down

0 comments on commit 7840f52

Please sign in to comment.