Skip to content

Commit c854024

Browse files
authored
A/B tests with baseline python version other than 3.9 (#716)
1 parent 39d35b5 commit c854024

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/ab_tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,9 @@ jobs:
175175
environment-file: ci/environment-dashboard.yml
176176

177177
- name: Generate dashboards
178-
run: python dashboard.py -d benchmark.db -o static -b coiled-AB_baseline-py3.9
178+
run: |
179+
PY_VER=$(sed -n 's/.*python=//p' AB_environments/AB_baseline.conda.yaml)
180+
python dashboard.py -d benchmark.db -o static -b coiled-AB_baseline-py$PY_VER
179181
180182
- name: Upload artifact
181183
uses: actions/upload-artifact@v3

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,3 +136,5 @@ dmypy.json
136136

137137
# Project-specific files
138138
cluster_kwargs.merged.yaml
139+
benchmark.db
140+
static/

ci/environment-dashboard.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,5 @@ dependencies:
1616
- pandas=1.4 # 1.5 is incompatibile with altair 4.2
1717
- tabulate
1818
- conda
19+
- filelock
20+
- s3fs

0 commit comments

Comments
 (0)