From ea62d08ecd99f6d4b2a206fb91e99acd3b942a4c Mon Sep 17 00:00:00 2001 From: micbou Date: Sun, 8 Nov 2015 11:51:03 +0100 Subject: [PATCH] Fix AppVeyor configuration We need to explicitly call the run_tests script with python. Otherwise, the script is not properly executed. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 5b500e63..88817a87 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,6 +11,6 @@ install: - python C:\get-pip.py - pip install -r python\test_requirements.txt build_script: - - run_tests.py + - python run_tests.py # Disable automatic tests test: off