File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -330,8 +330,7 @@ def _main(check: bool) -> None:
330330 dst = generator (src )
331331 write_yaml (dst_path , dst , check )
332332 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" )
335334 write_python (dst_path , src_path .read_text (), check )
336335 else :
337336 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):
247247 )
248248 with open ("requirements.txt" , "w" ) as fd :
249249 fd .write (f"{ str (bench_runner_checkout )} \n " )
250- print (list (Path ().iterdir ()))
251- print (list ((bench_runner_checkout / "bench_runner" / "templates" ).iterdir ()))
252250 subprocess .check_call (
253251 [
254252 str (binary ),
You can’t perform that action at this time.
0 commit comments