Skip to content

Commit

Permalink
fix(test_meson_build): use requires_exe instead of requires_pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
mwtoews committed Dec 9, 2024
1 parent 4dd11ea commit 6d34b4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autotest/test_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import pytest

from modflow_devtools.build import meson_build
from modflow_devtools.markers import requires_pkg
from modflow_devtools.markers import requires_exe

_repos_path = environ.get("REPOS_PATH")
if _repos_path is None:
Expand All @@ -20,7 +20,7 @@
)


@requires_pkg("meson", "ninja")
@requires_exe("meson", "ninja")
@pytest.mark.skipif(
not _modflow6_repo_path.is_dir(), reason="modflow6 repository not found"
)
Expand Down

0 comments on commit 6d34b4e

Please sign in to comment.