Changeset ab8bffa for .circleci


Ignore:
Timestamp:
Oct 1, 2018, 1:04:32 PM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
Children:
8142a7e
Parents:
3fcc85e
Message:

.circleci/config.yml: always show and uninstall, run tests without sounds

File:
1 edited

Legend:

Unmodified
Added
Removed
  • .circleci/config.yml

    r3fcc85e rab8bffa  
    2626    PATH=/home/circleci/.local/bin:$PATH nose2 -v
    2727
     28test-nose2-nosounds: &test-nose2-nosounds
     29  name: Test python wheel
     30  command: |
     31    PATH=/home/circleci/.local/bin:$PATH nose2 -v
     32
     33uninstall-wheel: &uninstall-wheel
     34  name: Uninstall python wheel
     35  command: |
     36    pip show -f aubio
     37    pip uninstall --verbose --yes aubio
     38
    2839version: 2
    2940jobs:
     
    3849      - run: *install-wheel
    3950      - run: *test-nose2
     51      - run: *uninstall-wheel
    4052      - store_artifacts:
    4153          path: dist/
     
    5163      - run: *install-wheel
    5264      - run: *test-nose2
     65      - run: *uninstall-wheel
    5366      - store_artifacts:
    5467          path: dist/
     
    6477      - run: *install-wheel
    6578      - run: *test-nose2
     79      - run: *uninstall-wheel
    6680      - store_artifacts:
    6781          path: dist/
     
    7589      - run: *build-wheel
    7690      - run: *install-wheel
    77       - run: pip show -f aubio
    78       - run: pip uninstall -y aubio
     91      - run: *test-nose2-nosounds
     92      - run: *uninstall-wheel
    7993      - store_artifacts:
    8094          path: dist/
Note: See TracChangeset for help on using the changeset viewer.