From 08288ee64e0506b382f7c37bf6948bb39574e34c Mon Sep 17 00:00:00 2001 From: manishvenu Date: Fri, 27 Sep 2024 14:38:45 -0600 Subject: [PATCH] Remove test from github workflow --- tests/test_tides_functions_config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_tides_functions_config.py b/tests/test_tides_functions_config.py index fd62a3f9..653295a0 100644 --- a/tests/test_tides_functions_config.py +++ b/tests/test_tides_functions_config.py @@ -3,6 +3,7 @@ import pytest import logging from pathlib import Path +IN_GITHUB_ACTIONS = os.getenv("GITHUB_ACTIONS") == "true" class TestAll: @@ -74,6 +75,8 @@ def setup_class(self): toolpath_dir="", ) + + @pytest.mark.skipif(IN_GITHUB_ACTIONS, reason="Test doesn't work in Github Actions.") def test_initial_condition(self): ocean_varnames = { "time": "time",