Skip to content

Commit 27163da

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

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
@@ -37,14 +37,8 @@ def test_full_build(isolated, isolate, manual_repair, monkeypatch):
3737

3838
isolated.install("-v", "./extern", ".", isolated=isolate)
3939

40-
with pytest.raises(SystemExit) as exc:
41-
isolated.run("main")
42-
assert exc.value.code != 0
43-
with pytest.raises(SystemExit) as exc:
44-
isolated.module("repair_wheel")
45-
assert exc.value.code != 0
46-
with pytest.raises(SystemExit) as exc:
47-
isolated.execute(
48-
"from repair_wheel._module import hello; hello()",
49-
)
50-
assert exc.value.code != 0
40+
isolated.run("main")
41+
isolated.module("repair_wheel")
42+
isolated.execute(
43+
"from repair_wheel._module import hello; hello()",
44+
)

0 commit comments

Comments
 (0)