Merge pull request #48227 from Ch3LL/fix_win_tests

Skip new sha256 files on repo.saltstack.com/windows
This commit is contained in:
Nicole Thomas 2018-06-20 16:12:08 -04:00 committed by GitHub
commit c6a0207cae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,7 @@ def iter_installers(content):
x = m.groups()[0]
if not x.startswith(PREFIX):
continue
if x.endswith('zip'):
if x.endswith(('zip', 'sha256')):
continue
if installer:
if x != installer + '.md5':