Changes in / [f4fcf02:b57ae47]


Ignore:
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • .travis.yml

    rf4fcf02 rb57ae47  
    9898  - which pip
    9999  - pip --version
     100  - pip install python-coveralls
    100101
    101102script:
     
    103104  - |
    104105    if [[ -z "$AUBIO_NOTESTS" ]]; then
     106      export NOSE2="coverage run --source=aubio `which nose2`"
    105107      make test_lib_python_clean
    106108      make test_python_only_clean
     
    108110      make test_lib_only_clean
    109111    fi;
     112
     113after_success:
     114  - coveralls
    110115
    111116notifications:
  • Makefile

    rf4fcf02 rb57ae47  
    3636MANDIR?=$(DATAROOTDIR)/man
    3737
     38# default nose2 command
     39NOSE2?=nose2 -N 4 --verbose
     40
    3841SOX=sox
    3942
     
    136139test_python: local_dylib
    137140        # run test with installed package
    138         ./python/tests/run_all_tests --verbose
    139         # also run with nose, multiple processes
    140         nose2 -N 4
     141        # ./python/tests/run_all_tests --verbose
     142        # run with nose2, multiple processes
     143        $(NOSE2)
    141144
    142145clean_python:
Note: See TracChangeset for help on using the changeset viewer.