From e8b52fa98994d87cda7c7a8d1b9228b7b7a9d0e4 Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Mon, 1 Jul 2019 09:05:41 +0200 Subject: [PATCH] appveyor.yml: run pytest directly --- appveyor.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 5b00a41..9a6dbce 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,17 +2,17 @@ environment: # For Python versions available on Appveyor, see # https://www.appveyor.com/docs/windows-images-software/#python matrix: - - PYTHON: "C:\\Python27" - - PYTHON: "C:\\Python33" - - PYTHON: "C:\\Python34" - - PYTHON: "C:\\Python35" - - PYTHON: "C:\\Python36" - - PYTHON: "C:\\Python37" - - PYTHON: "C:\\Python27-x64" - - PYTHON: "C:\\Python33-x64" - - PYTHON: "C:\\Python34-x64" - - PYTHON: "C:\\Python35-x64" - - PYTHON: "C:\\Python36-x64" +# - PYTHON: "C:\\Python27" +# - PYTHON: "C:\\Python33" +# - PYTHON: "C:\\Python34" +# - PYTHON: "C:\\Python35" +# - PYTHON: "C:\\Python36" +# - PYTHON: "C:\\Python37" +# - PYTHON: "C:\\Python27-x64" +# - PYTHON: "C:\\Python33-x64" +# - PYTHON: "C:\\Python34-x64" +# - PYTHON: "C:\\Python35-x64" +# - PYTHON: "C:\\Python36-x64" - PYTHON: "C:\\Python37-x64" install: @@ -21,7 +21,7 @@ install: build: off test_script: - - "%PYTHON%\\python.exe setup.py test" + - "%PYTHON%\\python.exe -m pytest test.py" after_test: - "%PYTHON%\\python.exe setup.py bdist_wheel"