From e3a5d5285c41fe588885813bbd023eddc81cbc9c Mon Sep 17 00:00:00 2001 From: Joseph D Hughes Date: Fri, 30 Jun 2023 16:34:04 -0500 Subject: [PATCH] release(1.2.8): update mf6 version Also added latest version of gsflow (v 2.3.0) and mfusg_gsi (v2.1.1). --- autotest/test_cli_cmds.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autotest/test_cli_cmds.py b/autotest/test_cli_cmds.py index 0950016b..b2eb460b 100644 --- a/autotest/test_cli_cmds.py +++ b/autotest/test_cli_cmds.py @@ -60,7 +60,7 @@ def test_make_program_all(function_tmpdir) -> None: @pytest.mark.dependency(name="mfpymake") @pytest.mark.base -def test_mfpymake(function_tmpdir) -> None: +def test_mfpymake_hello(function_tmpdir) -> None: src = ( "program hello\n" + " ! This is a comment line; it is ignored by the compiler\n" @@ -86,5 +86,5 @@ def test_mfpymake(function_tmpdir) -> None: else: cmd.append(os.environ.get("FC")) run_cli_cmd(cmd) - cmd = [str(function_tmpdir) / "hello"] + cmd = [str(function_tmpdir / "hello")] run_cli_cmd(cmd)