From 548f60d256534977a4b50fe9a7f1545b181a553b Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 2 Nov 2018 18:17:57 +0100 Subject: [PATCH] [ci] switch circleci to pytest --- .circleci/config.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 81a685e8..eb007381 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,16 +19,16 @@ install-wheel: &install-wheel command: | pip install --user dist/aubio*.whl -test-nose2: &test-nose2 +test-pytest: &test-pytest name: Test python wheel command: | make create_test_sounds - PATH=/home/circleci/.local/bin:$PATH nose2 -v + PATH=/home/circleci/.local/bin:$PATH pytest -v -test-nose2-nosounds: &test-nose2-nosounds +test-pytest-nosounds: &test-pytest-nosounds name: Test python wheel command: | - PATH=/home/circleci/.local/bin:$PATH nose2 -v + PATH=/home/circleci/.local/bin:$PATH pytest -v uninstall-wheel: &uninstall-wheel name: Uninstall python wheel @@ -47,7 +47,7 @@ jobs: - run: *pip-install - run: *build-wheel - run: *install-wheel - - run: *test-nose2 + - run: *test-pytest - run: *uninstall-wheel - store_artifacts: path: dist/ @@ -61,7 +61,7 @@ jobs: - run: *pip-install - run: *build-wheel - run: *install-wheel - - run: *test-nose2 + - run: *test-pytest - run: *uninstall-wheel - store_artifacts: path: dist/ @@ -75,7 +75,7 @@ jobs: - run: *pip-install - run: *build-wheel - run: *install-wheel - - run: *test-nose2 + - run: *test-pytest - run: *uninstall-wheel - store_artifacts: path: dist/ @@ -88,7 +88,7 @@ jobs: - run: *pip-install - run: *build-wheel - run: *install-wheel - - run: *test-nose2-nosounds + - run: *test-pytest-nosounds - run: *uninstall-wheel - store_artifacts: path: dist/ -- 2.11.0