Tests #462
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
release: | |
types: | |
- published | |
schedule: | |
# Run nightly to check that tests are working with latest dependencies | |
- cron: "0 0 * * *" | |
jobs: | |
testing: | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
os: [ubuntu-latest] | |
include: | |
- os: macos-latest | |
python-version: 3.8 | |
- os: windows-latest | |
python-version: 3.8 | |
runs-on: ${{ matrix.os }} | |
env: | |
MPLBACKEND: Agg | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install grid3d-maps | |
run: | | |
python -m pip install -U pip | |
pip install ".[tests]" | |
- name: List all installed packages | |
run: pip freeze | |
- name: Run test | |
run: pytest -n 4 tests/test_scripts --disable-warnings | |
test_vs_ert: | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
env: | |
MPLBACKEND: Agg | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install grid3d-maps | |
run: | | |
pip install -U pip | |
pip install ".[tests]" | |
- name: List all installed packages | |
run: pip freeze | |
- name: Run test vs ERT | |
run: | | |
pip install ert | |
pytest -n auto tests/test_vs_ert --disable-warnings |