From 1fcd4ab7f5e8a738746c12d3f281690778d1b4eb Mon Sep 17 00:00:00 2001 From: Chris Little Date: Sun, 30 Sep 2018 15:17:32 -0700 Subject: [PATCH] more configuration of appveyor --- appveyor.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index bb12cfbe9..addc614aa 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -24,7 +24,7 @@ environment: install: # We need wheel installed to build wheels - - "%PYTHON%\\python.exe -m pip install wheel" + - "%PYTHON%\\python.exe -m pip install wheel nose coverage" build: off @@ -36,7 +36,7 @@ test_script: # Note that you must use the environment variable %PYTHON% to refer to # the interpreter you're using - Appveyor does not do anything special # to put the Python version you want to use on PATH. - #- "%PYTHON%\\python.exe setup.py test" + - nosetests after_test: # This step builds your wheels. @@ -49,7 +49,8 @@ artifacts: # bdist_wheel puts your built wheel in the dist directory - path: dist\* -#on_success: +on_success: # You can use this step to upload your artifacts to a public website. # See Appveyor's documentation for more details. Or you can simply -# access your wheels from the Appveyor "artifacts" tab for your build. \ No newline at end of file +# access your wheels from the Appveyor "artifacts" tab for your build. + - echo Build successful!