Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
JWCook committed Jan 2, 2025
1 parent 0a84a97 commit c8eee32
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@ jobs:
key: venv-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: poetry install -v -E all
run: |
# pip install -U pip setuptools virtualenv 'numpy==1.24.4'
# pip install -U pip
# pip install -U setuptools virtualenv
pip install 'numpy==1.24.4'
poetry install -v -E all
# Run tests with coverage report
- name: Run tests
Expand Down

0 comments on commit c8eee32

Please sign in to comment.