Skip to content

Commit

Permalink
Running pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mhairifin authored and alastairtree committed Aug 16, 2024
1 parent d2969ad commit 49cda29
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,10 @@ def test_process_with_binary_hk_converts_to_csv():
assert expectedLastLine == lines[-1]
assert expectedNumRows == len(lines)


@pytest.mark.skipif(
os.getenv("GITHUB_ACTIONS") and os.getenv("RUNNER_OS") == "Windows",
reason="Wiremock test containers will not work on Windows Github Runner"
os.getenv("GITHUB_ACTIONS") and os.getenv("RUNNER_OS") == "Windows",
reason="Wiremock test containers will not work on Windows Github Runner",
)
def test_fetch_binary_downloads_hk_from_webpoda(wiremock_manager): # noqa: F811
# Set up.
Expand Down Expand Up @@ -127,8 +128,8 @@ def test_fetch_binary_downloads_hk_from_webpoda(wiremock_manager): # noqa: F811


@pytest.mark.skipif(
os.getenv("GITHUB_ACTIONS") and os.getenv("RUNNER_OS") == "Windows",
reason="Wiremock test containers will not work on Windows Github Runner"
os.getenv("GITHUB_ACTIONS") and os.getenv("RUNNER_OS") == "Windows",
reason="Wiremock test containers will not work on Windows Github Runner",
)
def test_fetch_science_downloads_cdf_from_sdc(wiremock_manager): # noqa: F811
# Set up.
Expand Down

0 comments on commit 49cda29

Please sign in to comment.