Merge pull request #2726 from MikeMcQuaid/audit-pypi-urls

audit: check pypi URLs
This commit is contained in:
Mike McQuaid 2017-06-03 10:01:22 +01:00 committed by GitHub
commit 1d034265af

View File

@ -1497,6 +1497,14 @@ class ResourceAuditor
problem "#{u} should be `https://search.maven.org/remotecontent?filepath=#{$1}`"
end
# Check pypi urls
if @strict
urls.each do |p|
next unless p =~ %r{^https?://pypi.python.org/(.*)}
problem "#{p} should be `https://files.pythonhosted.org/#{$2}`"
end
end
return unless @online
urls.each do |url|
next if !@strict && mirrors.include?(url)