Skip to content

Commit

Permalink
Issue #215: Fix Basilisk wheel installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark2000 committed Dec 27, 2024
1 parent 859db94 commit ce7fe62
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/commit_checks.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: Commit Checks

on: [pull_request]

jobs:
Expand Down Expand Up @@ -37,7 +36,7 @@ jobs:

run-pytest:
name: Run Tests
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand All @@ -63,16 +62,18 @@ jobs:
- name: Pull artifacts
uses: actions/download-artifact@v4
with:
name: basilisk-wheels_ubuntu-latest_python${{ matrix.python-version }}
name: basilisk-wheels_ubuntu-22.04_python${{ matrix.python-version }}
repository: AVSLab/basilisk
run-id: ${{ env.RUN_ID }}
github-token: ${{ github.token }}
- name: Install Basilisk from wheels
run: pip install Basilisk*.whl
run: |
pip install Basilisk*.whl
bskLargeData
- name: Install BSK-RL
run: pip install -e '.[all]' && finish_install
- name: Run pytest
run: pytest -v
run: pytest -v -ra --tb=long -o log_cli=true -o log_level=DEBUG

check-doc-build:
name: Test Documentation Build
Expand Down

0 comments on commit ce7fe62

Please sign in to comment.