Skip to content

Commit

Permalink
Update test_model.py to simply advanced tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjbr123 authored Jun 20, 2024
1 parent 74cbb31 commit 4e2baa8
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions tests/tests/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -897,11 +897,14 @@ def test_setup_spinup_simulate_resume_run(self):
# (i.e. full factorial design of experiment) as
# tuple(surfacelayer kind, subsurface kind, openwater kind)
# with 'c' for Component, 'd' for DataComponent, 'n' for NullComponent
# This takes too long with six, so we have to simplify it. We know
# the case of all 'c' works, and we only really need to test the new
# components
doe = (
(sl, ss, ow, nsl, nss, now)
for sl in ("c", "d", "n")
for ss in ("c", "d", "n")
for ow in ("c", "d", "n")
for sl in ("c")
for ss in ("c")
for ow in ("c")
for nsl in ("c", "d", "n")
for nss in ("c", "d", "n")
for now in ("c", "d", "n")
Expand Down Expand Up @@ -1014,9 +1017,9 @@ def test_setup_simulate(self):
"""
doe = (
(sl, ss, ow, nsl, nss, now)
for sl in ("c", "d")
for ss in ("c", "d")
for ow in ("c", "d")
for sl in ("c")
for ss in ("c")
for ow in ("c")
for nsl in ("c", "d")
for nss in ("c", "d")
for now in ("c", "d")
Expand Down Expand Up @@ -1078,9 +1081,9 @@ def test_setup_simulate_various_sources(self):
"""
doe = (
(sl, ss, ow, nsl, nss, now)
for sl in ("Python", "Fortran", "C")
for ss in ("Python", "Fortran", "C")
for ow in ("Python", "Fortran", "C")
for sl in ("Python")
for ss in ("Python")
for ow in ("Python")
for nsl in ("Python", "Fortran", "C")
for nss in ("Python", "Fortran", "C")
for now in ("Python", "Fortran", "C")
Expand Down

0 comments on commit 4e2baa8

Please sign in to comment.