Skip to content

Commit c3ed941

Browse files
committed
Check that all works
Signed-off-by: Cristian Le <[email protected]>
1 parent d941a08 commit c3ed941

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

tests/test_repair_wheel.py

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,8 @@ def test_full_build(isolated, isolate):
1919

2020
isolated.install("-v", *isolate_args, ".")
2121

22-
with pytest.raises(SystemExit) as exc:
23-
isolated.run("main")
24-
assert exc.value.code != 0
25-
with pytest.raises(SystemExit) as exc:
26-
isolated.module("repair_wheel")
27-
assert exc.value.code != 0
28-
with pytest.raises(SystemExit) as exc:
29-
isolated.execute(
30-
"from repair_wheel._module import hello; hello()",
31-
)
32-
assert exc.value.code != 0
22+
isolated.run("main")
23+
isolated.module("repair_wheel")
24+
isolated.execute(
25+
"from repair_wheel._module import hello; hello()",
26+
)

0 commit comments

Comments
 (0)