Skip to content

Commit

Permalink
Add missing parameter in pip install command
Browse files Browse the repository at this point in the history
  • Loading branch information
nth10sd committed Nov 29, 2023
1 parent 497b28e commit 39a6723
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
run: python -u -m pip install --upgrade pip setuptools ;
- name: Install requirements from requirements.txt
if: steps.pip-cache.outputs.cache-hit != 'true'
run: pip install -r requirements.txt ;
run: pip install --upgrade -r requirements.txt ;
- name: Run cargo tarpaulin (code coverage for Rust code), note that macOS runs bash on CI, not zsh
run: cargo tarpaulin --all-targets --count --exclude-files=target/* --engine=llvm --fail-under=80 --ignored --no-dead-code --out=stdout --skip-clean --target-dir=target/tarpaulin-target/ ;
- name: Install using maturin, optimized Rust code
Expand Down

0 comments on commit 39a6723

Please sign in to comment.