Skip to content

Commit ce7fe62

Browse files
committed
Issue #215: Fix Basilisk wheel installation
1 parent 859db94 commit ce7fe62

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/commit_checks.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
name: Commit Checks
2-
32
on: [pull_request]
43

54
jobs:
@@ -37,7 +36,7 @@ jobs:
3736

3837
run-pytest:
3938
name: Run Tests
40-
runs-on: ubuntu-latest
39+
runs-on: ubuntu-22.04
4140
strategy:
4241
fail-fast: false
4342
matrix:
@@ -63,16 +62,18 @@ jobs:
6362
- name: Pull artifacts
6463
uses: actions/download-artifact@v4
6564
with:
66-
name: basilisk-wheels_ubuntu-latest_python${{ matrix.python-version }}
65+
name: basilisk-wheels_ubuntu-22.04_python${{ matrix.python-version }}
6766
repository: AVSLab/basilisk
6867
run-id: ${{ env.RUN_ID }}
6968
github-token: ${{ github.token }}
7069
- name: Install Basilisk from wheels
71-
run: pip install Basilisk*.whl
70+
run: |
71+
pip install Basilisk*.whl
72+
bskLargeData
7273
- name: Install BSK-RL
7374
run: pip install -e '.[all]' && finish_install
7475
- name: Run pytest
75-
run: pytest -v
76+
run: pytest -v -ra --tb=long -o log_cli=true -o log_level=DEBUG
7677

7778
check-doc-build:
7879
name: Test Documentation Build

0 commit comments

Comments
 (0)