diff options
-rw-r--r-- | appveyor.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 94fd6289..1d29b18d 100644 --- a/appveyor.yml +++ b/appveyor.yml | |||
@@ -32,6 +32,8 @@ init: | |||
32 | # Setup Lua development/build environment | 32 | # Setup Lua development/build environment |
33 | # Make VS 2015 command line tools available | 33 | # Make VS 2015 command line tools available |
34 | - call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %platform% | 34 | - call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %platform% |
35 | # Add MinGW compiler to the path | ||
36 | - set PATH=C:\MinGW\bin;%PATH% | ||
35 | 37 | ||
36 | before_build: | 38 | before_build: |
37 | - set PATH=C:\Python27\Scripts;%PATH% # Add directory containing 'pip' to PATH | 39 | - set PATH=C:\Python27\Scripts;%PATH% # Add directory containing 'pip' to PATH |
@@ -43,7 +45,6 @@ build_script: | |||
43 | - luarocks install busted 1> NUL 2> NUL | 45 | - luarocks install busted 1> NUL 2> NUL |
44 | 46 | ||
45 | test_script: | 47 | test_script: |
46 | - set PATH=C:\MinGW\bin;%PATH% # Add MinGW compiler to the path | ||
47 | - busted --lpath=.//?.lua --exclude-tags=ssh,unix,mock -Xhelper appveyor,%COMPILER% | 48 | - busted --lpath=.//?.lua --exclude-tags=ssh,unix,mock -Xhelper appveyor,%COMPILER% |
48 | 49 | ||
49 | after_test: | 50 | after_test: |