Skip to content

Commit

Permalink
* update
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhughes-usgs committed Jun 16, 2024
1 parent e7dcf43 commit f0c96f0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions autotest/test_mt3d.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os
import sys
from pathlib import Path
from platform import system

import flopy
import pytest
Expand Down Expand Up @@ -124,15 +125,16 @@ def test_compile(pm, target):


@pytest.mark.regression
@pytest.mark.skipif(sys.platform == "darwin", reason="do not run on OSX")
# @pytest.mark.skipif(sys.platform == "darwin", reason="do not run on OSX")
@pytest.mark.skipif(sys.platform == "win32", reason="do not run on Windows")
@pytest.mark.xdist_group(TARGET_NAME)
def test_download_exes(module_tmpdir):
pymake.getmfexes(module_tmpdir, exes=("mfnwt", "mf6"), verbose=True)


@pytest.mark.regression
@pytest.mark.xdist_group(TARGET_NAME)
@pytest.mark.skipif(sys.platform == "darwin", reason="do not run on OSX")
# @pytest.mark.skipif(sys.platform == "darwin", reason="do not run on OSX")
@pytest.mark.skipif(sys.platform == "win32", reason="do not run on Windows")
@pytest.mark.parametrize(
"ws",
Expand Down

0 comments on commit f0c96f0

Please sign in to comment.