Skip to content

Commit

Permalink
fix: test: ecdsa pytest rewrite fixes
Browse files Browse the repository at this point in the history
Merge branch 'mnowak/ecdsa-pytest-rewrite-fixes' into 'main'

See merge request isc-projects/bind9!9823
  • Loading branch information
Mno-hime committed Dec 5, 2024
2 parents fa56e0d + 1a5683b commit bd0cf07
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bin/tests/system/ecdsa/tests_ecdsa.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ def check_server_soa(resolver):


@pytest.mark.skipif(
not os.environ["ECDSAP384SHA384_SUPPORTED"],
reason="algorithm ECDSA384 not supported",
not os.getenv("ECDSAP256SHA256_SUPPORTED"),
reason="algorithm ECDSA256 not supported",
)
def test_ecdsa256():
check_server_soa("10.53.0.2")


@pytest.mark.skipif(
not os.environ["ECDSAP256SHA256_SUPPORTED"],
reason="algorithm ECDSA256 not supported",
not os.getenv("ECDSAP384SHA384_SUPPORTED"),
reason="algorithm ECDSA384 not supported",
)
def test_ecdsa384():
check_server_soa("10.53.0.3")

0 comments on commit bd0cf07

Please sign in to comment.