Skip to content

Commit 56aa4c1

Browse files
committed
Fix caching and analysis
1 parent ce33fad commit 56aa4c1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/analysis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ jobs:
2828
run: |
2929
python -m venv .venv
3030
source .venv/bin/activate
31-
python -m pip install --upgrade pip
3231
python -m pip install -r requirements.txt
3332
python -m pip install pytest
3433
echo "$VIRTUAL_ENV/bin" >> $GITHUB_PATH
@@ -71,11 +70,11 @@ jobs:
7170
run: |
7271
python -m venv .venv
7372
source .venv/bin/activate
74-
python -m pip install --upgrade pip
7573
python -m pip install -r requirements.txt
7674
python -m pip install pytest
7775
- name: Generate fitting data
7876
run: |
77+
source .venv/bin/activate
7978
python -m pytest -m slow --selectAlgorithm ${{ matrix.algorithm }} --saveFileName test_output_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv --SNR ${{ matrix.SNR }} --fitCount 300 --saveDurationFileName test_duration_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv
8079
- name: Upload raw data
8180
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)