From 12e85828f0031c896afe8dbb95e95bbd7ff8df3f Mon Sep 17 00:00:00 2001 From: Anthony Johnson Date: Thu, 25 Feb 2016 11:04:14 -0800 Subject: [PATCH] Clone test repo before testing --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index f88e3cf..05f99ee 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -5,8 +5,8 @@ environment: install: - ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py') - "%PYTHON%/python.exe C:/get-pip.py" - - C:\msys64\usr\bin\bash -lc "pacman --noconfirm -Sy mingw-w64-x86_64-ca-certificates ca-certificates" -test_script: - "%PYTHON%/Scripts/pip.exe --version" - "%PYTHON%/Scripts/pip.exe install tox" +test_script: + - "git clone https://github.com/aspnet/Identity %APPVEYOR_BUILD_FOLDER%/tests/dotnetexample/example/Identity" - "%PYTHON%/Scripts/tox.exe -e py27"