Skip to content

Commit 33b48a3

Browse files
committed
Try to make test pass some more
1 parent 21bdbda commit 33b48a3

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

tests/test_workflow.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,16 @@ def test_whole_workflow(tmpdir):
215215

216216
with contextlib.chdir(repo):
217217
subprocess.check_call([sys.executable, "-m", "venv", str(venv_dir)])
218+
subprocess.check_call(
219+
[
220+
str(binary),
221+
"-m",
222+
"pip",
223+
"install",
224+
"--upgrade",
225+
"pip",
226+
]
227+
)
218228
subprocess.check_call(
219229
[
220230
str(binary),
@@ -238,6 +248,7 @@ def test_whole_workflow(tmpdir):
238248
with open("requirements.txt", "w") as fd:
239249
fd.write(f"{str(bench_runner_checkout)}\n")
240250
print(list(Path().iterdir()))
251+
print(list((bench_runner_checkout / "bench_runner" / "templates").iterdir()))
241252
subprocess.check_call(
242253
[
243254
str(binary),

0 commit comments

Comments
 (0)