Skip to content

Commit

Permalink
Split test running into individual groups to track down which one is …
Browse files Browse the repository at this point in the history
…causing the freezing
  • Loading branch information
djhoese committed Jul 19, 2023
1 parent 1d8bc7c commit 850d3d8
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 3 deletions.
44 changes: 42 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,47 @@ jobs:
run: |
python -m pip install --no-deps -e .
- name: Run unit tests
- name: Run unit tests - compositor_tests
shell: bash -l {0}
run: |
pytest satpy/tests/reader_tests
pytest satpy/tests/compositor_tests
- name: Run unit tests - enhancement_tests
shell: bash -l {0}
run: |
pytest satpy/tests/enhancement_tests
- name: Run unit tests - modifier_tests
shell: bash -l {0}
run: |
pytest satpy/tests/modifier_tests
- name: Run unit tests - scene_tests
shell: bash -l {0}
run: |
pytest satpy/tests/scene_tests
- name: Run unit tests - writer_tests
shell: bash -l {0}
run: |
pytest satpy/tests/writer_tests
- name: Run unit tests - multiscene_tests
shell: bash -l {0}
run: |
pytest satpy/tests/multiscene_tests
- name: Run unit tests - cf_roundtrip
shell: bash -l {0}
run: |
pytest satpy/tests/test_cf_roundtrip.py
- name: Run unit tests - readers
shell: bash -l {0}
run: |
pytest satpy/tests/test_readers.py
- name: Run unit tests - writers
shell: bash -l {0}
run: |
pytest satpy/tests/test_writers.py
- name: Run unit tests - file_handlers
shell: bash -l {0}
run: |
pytest satpy/tests/test_file_handlers.py
- name: Run unit tests - all
shell: bash -l {0}
run: |
pytest satpy/tests
7 changes: 6 additions & 1 deletion continuous_integration/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ dependencies:
- pyyaml
- pyproj
- pyresample>=1.24
- libnetcdf=4.9.2=nompi_h5902ca5_107
# Before S3:
#- libnetcdf=4.9.2=nompi_h5902ca5_107
# S3 added:
#- libnetcdf=4.9.2=nompi_h624ddae_108
# PNetCDF (build 109)
- libnetcdf
- netcdf4
- h5py
- h5netcdf
Expand Down

0 comments on commit 850d3d8

Please sign in to comment.