Skip to content

Commit

Permalink
Merge pull request #296 from pybop-team/290-test-nightly-against-pyba…
Browse files Browse the repository at this point in the history
…mm-develop

Fix for nightly dependancy workflow
  • Loading branch information
BradyPlanden committed Apr 18, 2024
2 parents 6f594de + f0246fd commit 6ba3d04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nightly_dependency_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
- name: Run ${{ matrix.suite }} tests
run: |
if [ ${{ matrix.suite }} == "unit"]; then
if [[ "${{ matrix.suite }}" == "unit" ]]; then
python -m pytest --unit
elif [ ${{ matrix.suite }} == "integration"]; then
elif [[ "${{ matrix.suite }}" == "integration" ]]; then
python -m pytest --integration
elif [ ${{ matrix.suite }} == "examples"]; then
elif [[ "${{ matrix.suite }}" == "examples" ]]; then
python -m pytest --nbmake --examples
fi

0 comments on commit 6ba3d04

Please sign in to comment.