Skip to content

Commit

Permalink
sleep 2
Browse files Browse the repository at this point in the history
  • Loading branch information
czoido committed Oct 24, 2024
1 parent f83cd24 commit d4ac48f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/command_v2/test_cache_save_restore.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,11 @@ def test_cache_save_restore_multiple_revisions():
c = TestClient()
c.save({"conanfile.py": GenConanfile("pkg", "0.1")})
c.run("create .")
time.sleep(1)
time.sleep(2)
rrev1 = c.exported_recipe_revision()
c.save({"conanfile.py": GenConanfile("pkg", "0.1").with_class_attribute("var=42")})
c.run("create .")
time.sleep(1)
time.sleep(2)
rrev2 = c.exported_recipe_revision()
c.save({"conanfile.py": GenConanfile("pkg", "0.1").with_class_attribute("var=123")})
c.run("create .")
Expand Down

0 comments on commit d4ac48f

Please sign in to comment.