Skip to content

Commit

Permalink
fix: ignore external provider tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SRWieZ committed Dec 9, 2024
1 parent 82faeff commit d28084e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Feature/Providers/DnsProvidersTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

})
->with(DnsProvider::cases())
// ->skip('this test is not important for now')
->skip('this test is there to check external dns providers, not the fetcher itself.')
->skip(
conditionOrMessage: ! DigFetcher::isSupported(),
message: 'dig is not installed on this system.'
Expand Down
1 change: 1 addition & 0 deletions tests/Feature/Providers/HttpProvidersTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

})
->with(HttpProvider::cases())
->skip('this test is there to check external http providers, not the fetcher itself.')
->skip(
conditionOrMessage: ! CurlFetcher::isSupported(),
message: 'curl is not installed on this system.'
Expand Down

0 comments on commit d28084e

Please sign in to comment.