We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 626c236 commit 6f22a9cCopy full SHA for 6f22a9c
autotest/test_gwf_tdis.py
@@ -3,7 +3,7 @@
3
import flopy
4
import numpy as np
5
import pytest
6
-from xmipy import XmiWrapper
+from modflow_devtools.markers import requires_pkg
7
8
9
@pytest.fixture
@@ -26,9 +26,12 @@ def simple_sim(tmp_path):
26
return sim
27
28
29
+@requires_pkg("xmipy")
30
@pytest.mark.parametrize("tsmult", [1.0, 1.2])
31
def test_tdis_tsmult(tsmult, simple_sim, targets):
32
"""Check totim values to ensure they avoid accumulation errors."""
33
+ from xmipy import XmiWrapper
34
+
35
sim = simple_sim
36
37
# Add TDIS package using time variables
0 commit comments