Skip to content

Commit

Permalink
tests: Fix github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
georgebisbas committed Mar 30, 2023
1 parent 14153aa commit ed9fb9a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/examples-mpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -e .[extras,mpi]
pip install -e .[extras,mpi,tests]
- name: Test mpi notebooks
run : |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- name: Install dependencies
run: |
pip install -e .
pip install -e .[tests]
pip install matplotlib
- name: Tests in examples
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest-aws.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
if: "!contains(matrix.name, 'docker')"
run: |
pip3 install --upgrade pip
pip3 install -U -e .
pip3 install -U -e .[tests]
pip3 install pytest-xdist
- name: Test with pytest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest-core-nompi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
if: "!contains(matrix.name, 'docker')"
run: |
pip install --upgrade pip
pip install -e .
pip install -e .[tests]
pip install sympy==${{matrix.sympy}}
- name: Test with pytest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tutorials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
if: matrix.name != 'tutos-docker-gcc-py37'
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -e .[tests]
pip install matplotlib blosc
- name: Seismic notebooks
Expand Down

0 comments on commit ed9fb9a

Please sign in to comment.