File tree Expand file tree Collapse file tree 1 file changed +13
-12
lines changed
examples/benchmarking-scripts Expand file tree Collapse file tree 1 file changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -32,21 +32,22 @@ def run_pyperformance(revision):
3232 out_file = output_dir / f"{ branch } -{ sha } .out"
3333 err_file = output_dir / f"{ branch } -{ sha } .err"
3434 with open (out_file , "w" ) as output , open (err_file , "w" ) as error :
35- subprocess .run ([
36- "./run-pyperformance.sh" ,
37- "-x" ,
38- "--" ,
39- "compile" ,
40- "benchmark.conf" ,
41- sha ,
42- branch ,
43- ],
44- stdout = output ,
45- stderr = error ,
35+ subprocess .run (
36+ [
37+ "./run-pyperformance.sh" ,
38+ "-x" ,
39+ "--" ,
40+ "compile" ,
41+ "benchmark.conf" ,
42+ sha ,
43+ branch ,
44+ ],
45+ stdout = output ,
46+ stderr = error ,
4647 )
4748
4849
49- if __name__ == ' __main__' :
50+ if __name__ == " __main__" :
5051 original_sigint_handler = signal .signal (signal .SIGINT , signal .SIG_IGN )
5152 pool = Pool (10 )
5253 signal .signal (signal .SIGINT , original_sigint_handler )
You can’t perform that action at this time.
0 commit comments