ci: skip test run_flow_from_json_object (#2227)

ci: skip test test_run_flow_from_json_object
This commit is contained in:
Nicolò Boschi 2024-06-19 17:11:59 +02:00 committed by GitHub
commit 818dfa7c6d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View file

@ -35,6 +35,8 @@ load_dotenv()
def pytest_configure(config):
config.addinivalue_line("markers", "noclient: don't create a client for this test")
config.addinivalue_line("markers", "load_flows: load the flows for this test")
config.addinivalue_line("markers", "api_key_required: run only if the api key is set in the environment variables")
data_path = Path(__file__).parent.parent.absolute() / "data"
pytest.BASIC_EXAMPLE_PATH = data_path / "basic_example.json"

View file

@ -33,6 +33,7 @@ def test_load_flow_from_json_object():
@pytest.mark.noclient
@pytest.mark.api_key_required
def test_run_flow_from_json_object():
"""Test loading a flow from a json file and applying tweaks"""
_, projects = zip(*load_starter_projects())