Skip to content

Commit

Permalink
Adding exception for darwin and nightly for some geo tests
Browse files Browse the repository at this point in the history
  • Loading branch information
david-dick committed Jul 15, 2024
1 parent 0625978 commit 248fb81
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions t/01-marionette.t
Original file line number Diff line number Diff line change
Expand Up @@ -2913,6 +2913,12 @@ SKIP: {
if (!$tls_tests_ok) {
skip("TLS test infrastructure seems compromised", 5);
}
if ($^O eq 'darwin') {
if (($firefox->nightly()) || ($firefox->developer())) {
skip("github actions are having trouble for Darwin nightly", 5);
diag("github actions are having trouble for Darwin nightly");
}
}
ok($firefox->go(URI->new("https://fastapi.metacpan.org/author/DDICK")), "https://fastapi.metacpan.org/author/DDICK has been loaded");
ok($firefox->interactive() && $firefox->loaded(), "\$firefox->interactive() and \$firefox->loaded() are ok");
if ($major_version < 61) {
Expand Down

0 comments on commit 248fb81

Please sign in to comment.