Skip to content

Commit 782d00d

Browse files
committed
ci: remove rust acc from CI/CD
1 parent 3741ef9 commit 782d00d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/test_uuid_backend.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
],
1212
)
1313
def test_backend_forced(monkeypatch, value, expected):
14+
try:
15+
import uuid_utils # noqa: F401
16+
except Exception:
17+
pytest.skip("Rust extension uuid_utils not installed in this environment")
18+
1419
monkeypatch.setenv("TYPEID_UUID_BACKEND", value)
1520
backend = get_uuid_backend()
1621
assert backend.name == expected

0 commit comments

Comments
 (0)