From 572b00852db20b3c9b8df943a31e6101c12ffd02 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Fri, 29 Nov 2019 17:21:50 +0000 Subject: [PATCH] appveyor: set build to off and build wheel in test_script section --- .appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index cd985f1..89988ab 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -75,13 +75,13 @@ install: # Install build and test dependencies - "%CMD_IN_ENV% pip install cython setuptools_scm setuptools_scm_git_archive sympy unittest2 pytest" -build: +build: off + +test_script: # create binary packages - "%CMD_IN_ENV% pip wheel -w wheelhouse ." # install wheel so we can test it - pip install --no-index --find-links wheelhouse pyclipper - -test_script: # Run the project tests - "%CMD_IN_ENV% pytest"