Skip to content

Commit

Permalink
use both blas and lapack skip slow tests
Browse files Browse the repository at this point in the history
  • Loading branch information
digicosmos86 committed Aug 27, 2024
1 parent cfb269f commit a1c726f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run_fast_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install lapack
- name: Install blas and lapack
run: |
sudo apt update
sudo apt install liblapack-dev
sudo apt install libblas-dev liblapack-dev
- name: Install Python
uses: actions/setup-python@v2
Expand All @@ -39,7 +39,7 @@ jobs:
run: poetry install

- name: Run fast tests
run: pytest -n auto -s --ignore=tests/slow
run: poetry run pytest -n auto -s --ignore=tests/slow

- name: Run jupyter notebooks in docs
run: mkdocs build
4 changes: 2 additions & 2 deletions .github/workflows/run_slow_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install lapack
- name: Install blas and lapack
run: |
sudo apt update
sudo apt install liblapack-dev
sudo apt install libblas-dev liblapack-dev
- name: Install Python
uses: actions/setup-python@v2
Expand Down

0 comments on commit a1c726f

Please sign in to comment.