cache virtualevns with core versions

This commit is contained in:
holger krekel
2025-11-24 01:46:27 +01:00
parent 7ea50ca8e0
commit 4be07f4687
2 changed files with 46 additions and 22 deletions

View File

@@ -1,5 +1,9 @@
def test_qr_setup_contact(alice_and_remote_bob) -> None:
alice, alice_contact_bob, remote_eval = alice_and_remote_bob("2.20.0")
import pytest
@pytest.mark.parametrize("version", ["2.20.0", "2.10.0"])
def test_qr_setup_contact(alice_and_remote_bob, version) -> None:
alice, alice_contact_bob, remote_eval = alice_and_remote_bob(version)
qr_code = alice.get_qr_code()
remote_eval(f"bob.secure_join({qr_code!r})")