Changeset 36ce209
- Timestamp:
- Nov 2, 2018, 12:18:25 AM (6 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master
- Children:
- bee9445
- Parents:
- 69783fb
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r69783fb r36ce209 139 139 test_python: local_dylib 140 140 # run test with installed package 141 # ./python/tests/run_all_tests --verbose142 # run with nose2, multiple processes143 141 $(NOSE2) 144 142 -
doc/python_module.rst
r69783fb r36ce209 68 68 ------------ 69 69 70 A number of `python tests`_ are provided. To run them, use 71 ``python/tests/run_all_tests``. 72 73 .. _demo_filter.py: https://github.com/aubio/aubio/blob/master/python/demos/demo_filter.py 74 .. _python tests: https://github.com/aubio/aubio/blob/master/python/tests 70 A number of python tests are provided. To run them, use ``pytest`` from the 71 aubio source tree. -
python/README.md
r69783fb r36ce209 36 36 ------------------------- 37 37 38 Python tests are in `python/tests` and use the [nose2 python package][nose2].38 Python tests are in `python/tests` and use [pytest]. 39 39 40 To run the all the python tests , use the script:40 To run the all the python tests: 41 41 42 $ ./python/tests/run_all_tests 42 $ cd aubio 43 $ pytest 43 44 44 45 Each test script can also be called one at a time. For instance: 45 46 46 $ ./python/tests/test_note2midi.py -v47 $ pytest -v python/tests/test_note2midi.py 47 48 48 [ nose2]: https://github.com/nose-devs/nose249 [pytest]: https://pytest.org 49 50 50 51 Install in a virtualenv
Note: See TracChangeset
for help on using the changeset viewer.