Skip to content

Commit

Permalink
[1.8.x] Skip RPKI related tests until they can be made stable
Browse files Browse the repository at this point in the history
#1549
(cherry picked from commit 5d48447)
  • Loading branch information
aequitas authored and mxsasha committed Nov 13, 2024
1 parent 2b20c18 commit 346081a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions integration_tests/develop/test_website.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ def test_your_website_score_with_ipv6(page, app_url, test_domain):
expect(score).to_have_attribute("data-resultscore", str(TEST_DOMAIN_EXPECTED_SCORE))


@pytest.mark.skip(
reason="Temporary disabled due to RPKI instability, https://github.com/internetstandards/Internet.nl/issues/1549"
)
@pytest.mark.skipif(ipv6_available(), reason="IPv6 networking available")
def test_your_website_score_no_ipv6(page, app_url, test_domain):
"""Run "Test your website" from the frontpage and expect a decent result."""
Expand Down
2 changes: 2 additions & 0 deletions tests/unittests/test_tasks_rpki.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import responses

from django.test import SimpleTestCase, override_settings
from unittest import skip

from checks.tasks import SetupUnboundContext as Task
from checks.tasks.rpki import do_rpki
Expand Down Expand Up @@ -29,6 +30,7 @@ def setUp(self) -> None:
self.task = Task()
return super().setUp()

@skip("Temporary disabled due to RPKI instability, https://github.com/internetstandards/Internet.nl/issues/1549")
@override_settings(ROUTINATOR_URL="https://example.net/api/v1/validity")
def test_do_rpki(self):
for domain, expected_result in BEACONS.items():
Expand Down

0 comments on commit 346081a

Please sign in to comment.