Skip to content

Commit 47b3a68

Browse files
authored
Merge pull request #405 from faster-cpython/v2.0-testing
Minor bugfixes for the 2.0 release
2 parents 5b05552 + c801fbe commit 47b3a68

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

bench_runner/scripts/workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def compile_windows(
190190
if "TAILCALL" in flags:
191191
args.append("--tail-call-interp")
192192
if configure_flags := os.environ.get("PYTHON_CONFIGURE_FLAGS"):
193-
args.extend(shlex.split(configure_flags))
193+
args.append(configure_flags)
194194

195195
with contextlib.chdir(cpython):
196196
subprocess.check_call(

bench_runner/templates/_weekly.src.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ jobs:
3535
fork: python
3636
ref: ${{ needs.determine_head.outputs.commit }}
3737
benchmarks: all
38-
individual: true
3938
tier2: false
4039
secrets: inherit
4140

@@ -46,7 +45,6 @@ jobs:
4645
fork: python
4746
ref: ${{ needs.determine_head.outputs.commit }}
4847
benchmarks: all
49-
individual: true
5048
tier2: true
5149
secrets: inherit
5250

0 commit comments

Comments
 (0)