Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

Commit

Permalink
Correct skip syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
richfitz committed Oct 18, 2023
1 parent 58ea371 commit 89e16be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_keys.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import os
import platform

import pytest
Expand Down Expand Up @@ -139,7 +140,7 @@ def test_error_on_check_if_unknown_machine():
with pytest.raises(Exception, match=msg):
check(cfg, "eve")

@pytest.skipif("GITHUB_ACTIONS" in os.environ, reason="firewall issues?")
@pytest.mark.skipif("GITHUB_ACTIONS" in os.environ, reason="firewall issues?")
def test_can_test_connection(capsys, managed_docker):
with vault_dev.Server(export_token=True) as server:
cfg = read_config("example/simple.json")
Expand Down

0 comments on commit 89e16be

Please sign in to comment.