From 2eb47e9ea581f60be3d25c4c69585581d44e67e7 Mon Sep 17 00:00:00 2001 From: Johnny Robeson Date: Fri, 30 Dec 2016 21:30:20 -0500 Subject: [PATCH] Temporarily allow empty checksum for unrar on appveyor (#2359) Obviously it'd be best if we didn't have to do it, but I doubt we can wait forever for the packagers to add it. --- appveyor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 974bff4db..4f350b938 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -20,7 +20,8 @@ environment: # Install Tox for running tests. install: - cinst imagemagick -y - - cinst unrar -y + # TODO: remove --allow-empty-checksums when unrar offers a proper checksum + - cinst unrar -y --allow-empty-checksums - "%PYTHON%/Scripts/pip.exe install tox" - "%PYTHON%/Scripts/tox.exe -e %TOX_ENV% --notest"