Skip to content

Commit

Permalink
revert obsolete changes
Browse files Browse the repository at this point in the history
  • Loading branch information
slayoo committed Jan 22, 2025
1 parent 322d3a2 commit d79aa07
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 20 deletions.
34 changes: 15 additions & 19 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,26 +110,22 @@ jobs:
platform: [ubuntu-24.04, macos-13, macos-14, windows-latest]
python-version: ["3.9", "3.12"]
test-suite: ["unit_tests/!(dynamics)", "unit_tests/dynamics/!(collisions)", "unit_tests/dynamics/collisions", "smoke_tests/no_env", "smoke_tests/box", "smoke_tests/parcel_a", "smoke_tests/parcel_b", "smoke_tests/parcel_c", "smoke_tests/parcel_d", "smoke_tests/kinematic_1d", "smoke_tests/kinematic_2d", "tutorials_tests"]
include:
- platform: "windows-latest"
python-version: "3.12"
exclude:
- platform: "macos-14"
python-version: "3.9"
- test-suite: "devops_tests"
python-version: "3.9"
# TODO #1406
- platform: "macos-14"
test-suite: "smoke_tests/box"
- platform: "macos-14"
test-suite: "smoke_tests/parcel_a"
- platform: "macos-14"
test-suite: "smoke_tests/parcel_d"
# exclude:
# - platform: "macos-14"
# python-version: "3.9"
# - test-suite: "devops_tests"
# python-version: "3.9"
# # TODO #1406
# - platform: "macos-14"
# test-suite: "smoke_tests/box"
# - platform: "macos-14"
# test-suite: "smoke_tests/parcel_a"
# - platform: "macos-14"
# test-suite: "smoke_tests/parcel_d"
# - platform: "macos-14"
# test-suite: "smoke_tests/kinematic_2d"
# - platform: "macos-14"
# test-suite: "unit_tests/!(dynamics)"
- platform: "macos-14"
test-suite: "smoke_tests/kinematic_2d"
- platform: "macos-14"
test-suite: "unit_tests/!(dynamics)"
fail-fast: false
runs-on: ${{ matrix.platform }}
timeout-minutes: ${{ startsWith(matrix.platform, 'windows-') && 35 || 30 }}
Expand Down
2 changes: 1 addition & 1 deletion tests/unit_tests/backends/test_physics_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def test_temperature_pressure_rh(backend_instance):
# Assert
assert 282 * si.K < T.amin() < 283 * si.K
assert 810 * si.hPa < p.amin() < 830 * si.hPa
assert 1.10 < RH.amin() < 1.11
assert 1.12 < RH.amin() < 1.13

@staticmethod
@pytest.mark.parametrize("variant", ("LiquidSpheres", "MixedPhaseSpheres"))
Expand Down

0 comments on commit d79aa07

Please sign in to comment.