File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -123,6 +123,9 @@ def __init__(self):
123
123
if self .git_url :
124
124
self .slug = self .git_url .split ("/" )[- 1 ]
125
125
126
+ def shell (self ):
127
+ return ShellSession (f"output_{ self .slug } .log" )
128
+
126
129
def make_dir (self ):
127
130
self .dir = Path (f"work_{ self .slug } " )
128
131
if self .dir .exists ():
@@ -421,7 +424,7 @@ def run(self, num_runs: int = 3) -> None:
421
424
422
425
for proj in self .projects :
423
426
print (f"Testing with { proj .slug } " )
424
- with ShellSession ( f"output_ { proj .slug } .log" ) as shell :
427
+ with proj .shell ( ) as shell :
425
428
proj .make_dir ()
426
429
proj .get_source (shell )
427
430
@@ -570,6 +573,7 @@ def run_experiment(
570
573
if 1 :
571
574
run_experiment (
572
575
py_versions = [
576
+ Python (3 , 9 ),
573
577
Python (3 , 11 ),
574
578
],
575
579
cov_versions = [
You can’t perform that action at this time.
0 commit comments