Skip to content

Commit

Permalink
sourcery refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-S-Rosen committed Sep 25, 2023
1 parent 456ac9e commit 64800e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/recipes/compiled_recipes/test_real_gulp_recipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
)

pytestmark = pytest.mark.skipif(
has_gulp is False or SETTINGS.WORKFLOW_ENGINE != "local",
not has_gulp or SETTINGS.WORKFLOW_ENGINE != "local",
reason="Need GULP and Need to use local as workflow manager to run this test.",
)

Expand Down
2 changes: 1 addition & 1 deletion tests/recipes/compiled_recipes/test_real_orca_recipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
has_orca = bool(which(SETTINGS.ORCA_CMD))

pytestmark = pytest.mark.skipif(
has_orca is False or SETTINGS.WORKFLOW_ENGINE != "local",
not has_orca or SETTINGS.WORKFLOW_ENGINE != "local",
reason="Need ORCA and Need to use local as workflow manager to run this test.",
)

Expand Down
2 changes: 1 addition & 1 deletion tests/recipes/dftb_recipes/test_dftb_recipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
DEFAULT_SETTINGS = SETTINGS.copy()

pytestmark = pytest.mark.skipif(
DFTBPLUS_EXISTS is False or SETTINGS.WORKFLOW_ENGINE != "local",
not DFTBPLUS_EXISTS or SETTINGS.WORKFLOW_ENGINE != "local",
reason="Need DFTB+ and Need to use local as workflow manager to run this test.",
)

Expand Down

0 comments on commit 64800e1

Please sign in to comment.