From: Paul Brossier Date: Mon, 24 Sep 2018 20:49:57 +0000 (+0200) Subject: .appveyor.yml: simplify, add test_script, move requirements to install X-Git-Tag: 0.4.8~100^2~9 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=205fe439f83101e6e5bd19317dde02448b2d8c38;p=aubio.git .appveyor.yml: simplify, add test_script, move requirements to install --- diff --git a/.appveyor.yml b/.appveyor.yml index 71884194..1efbb422 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -56,17 +56,17 @@ install: # We need wheel installed to build wheels - "python -m pip install wheel" + - "pip install -r requirements.txt" + before_build: - "bash scripts/get_waf.sh" build_script: # build python module without using libaubio - - "%PYTHONDIR%\\python.exe -m pip install -r requirements.txt" - - "python setup.py build" - - "%PYTHONDIR%\\python.exe -m pip install ." + - pip wheel -v -v -v --wheel-dir=dist . + # also build libaubio with waf + - python waf distclean configure build install --verbose --msvc_version="msvc 14.0" + +test_script: - "python python\\demos\\demo_create_test_sounds.py" - "nose2 --verbose" - # clean up - - "python waf distclean" - # build libaubio - - python waf configure build --verbose --msvc_version="msvc 14.0"