Skip to content

Commit 56cf063

Browse files
committed
Don't pass --no-run to find tests
1 parent 081c3c4 commit 56cf063

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/norun/test_find.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88

99
def test_find_image():
1010
image_name = f"{secrets.token_hex(8)}:latest"
11-
r2d = make_r2d(["--image", image_name, "--no-run", str(HERE)])
11+
r2d = make_r2d(["--image", image_name, str(HERE)])
1212

13-
r2d.start()
13+
r2d.build()
1414

1515
assert r2d.find_image()
1616

1717

1818
def test_dont_find_image():
1919
image_name = f"{secrets.token_hex(8)}:latest"
20-
r2d = make_r2d(["--image", image_name, "--no-run", str(HERE)])
20+
r2d = make_r2d(["--image", image_name, str(HERE)])
2121

2222
# Just don't actually start the build, so image won't be found
2323
assert not r2d.find_image()

0 commit comments

Comments
 (0)