Skip to content

Commit

Permalink
qa-checks: Ignore jar files for HTTPS checks (#29615)
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroslopez committed Aug 18, 2023
1 parent 2b18864 commit c1bc88e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def read_all_files_in_directory(
".hypothesis",
}

IGNORED_FILENAME_PATTERN_FOR_HTTPS_CHECKS = {"*Test.java", "*.pyc", "*.gz", "*.svg"}
IGNORED_FILENAME_PATTERN_FOR_HTTPS_CHECKS = {"*Test.java", "*.jar", "*.pyc", "*.gz", "*.svg"}
IGNORED_URLS_PREFIX = {
"http://json-schema.org",
"http://localhost",
Expand Down

0 comments on commit c1bc88e

Please sign in to comment.