From ab8bffa2f59b54f3a05eddc13887b37619993fa7 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 1 Oct 2018 13:04:32 +0200 Subject: [PATCH] .circleci/config.yml: always show and uninstall, run tests without sounds --- .circleci/config.yml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a74018a0..81a685e8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,6 +25,17 @@ test-nose2: &test-nose2 make create_test_sounds PATH=/home/circleci/.local/bin:$PATH nose2 -v +test-nose2-nosounds: &test-nose2-nosounds + name: Test python wheel + command: | + PATH=/home/circleci/.local/bin:$PATH nose2 -v + +uninstall-wheel: &uninstall-wheel + name: Uninstall python wheel + command: | + pip show -f aubio + pip uninstall --verbose --yes aubio + version: 2 jobs: build-27: @@ -37,6 +48,7 @@ jobs: - run: *build-wheel - run: *install-wheel - run: *test-nose2 + - run: *uninstall-wheel - store_artifacts: path: dist/ @@ -50,6 +62,7 @@ jobs: - run: *build-wheel - run: *install-wheel - run: *test-nose2 + - run: *uninstall-wheel - store_artifacts: path: dist/ @@ -63,6 +76,7 @@ jobs: - run: *build-wheel - run: *install-wheel - run: *test-nose2 + - run: *uninstall-wheel - store_artifacts: path: dist/ @@ -74,8 +88,8 @@ jobs: - run: *pip-install - run: *build-wheel - run: *install-wheel - - run: pip show -f aubio - - run: pip uninstall -y aubio + - run: *test-nose2-nosounds + - run: *uninstall-wheel - store_artifacts: path: dist/ -- 2.11.0