Changes in / [b57ae47:f4fcf02]


Ignore:
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • .travis.yml

    rb57ae47 rf4fcf02  
    9898  - which pip
    9999  - pip --version
    100   - pip install python-coveralls
    101100
    102101script:
     
    104103  - |
    105104    if [[ -z "$AUBIO_NOTESTS" ]]; then
    106       export NOSE2="coverage run --source=aubio `which nose2`"
    107105      make test_lib_python_clean
    108106      make test_python_only_clean
     
    110108      make test_lib_only_clean
    111109    fi;
    112 
    113 after_success:
    114   - coveralls
    115110
    116111notifications:
  • Makefile

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