File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -330,8 +330,7 @@ def _main(check: bool) -> None:
330
330
dst = generator (src )
331
331
write_yaml (dst_path , dst , check )
332
332
elif src_path .name .endswith (".src.py" ):
333
- dst_path = WORKFLOW_PATH / (src_path .name [:- 7 ] + ".py" )
334
- print (f"Writing python { dst_path } " )
333
+ dst_path = ROOT_PATH / (src_path .name [:- 7 ] + ".py" )
335
334
write_python (dst_path , src_path .read_text (), check )
336
335
else :
337
336
dst_path = ROOT_PATH / src_path .name
Original file line number Diff line number Diff line change @@ -247,8 +247,6 @@ def test_whole_workflow(tmpdir):
247
247
)
248
248
with open ("requirements.txt" , "w" ) as fd :
249
249
fd .write (f"{ str (bench_runner_checkout )} \n " )
250
- print (list (Path ().iterdir ()))
251
- print (list ((bench_runner_checkout / "bench_runner" / "templates" ).iterdir ()))
252
250
subprocess .check_call (
253
251
[
254
252
str (binary ),
You can’t perform that action at this time.
0 commit comments