Changeset 974dddc for tests/python
- Timestamp:
- Dec 1, 2007, 5:56:57 PM (17 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 41ed384
- Parents:
- b63b322
- Location:
- tests/python
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/python/run_all_tests
rb63b322 r974dddc 1 1 #! /usr/bin/python 2 3 # add ${src}/python and ${src}/python/aubio/.libs to python path4 # so the script is runnable from a compiled source tree.5 import sys, os6 7 cur_dir = os.path.dirname(sys.argv[0])8 sys.path.append(os.path.join(cur_dir,'..','..','python'))9 sys.path.append(os.path.join(cur_dir,'..','..','python','aubio','.libs'))10 2 11 3 import unittest -
tests/python/src/cvec.py
rb63b322 r974dddc 1 import unittest 2 3 from aubio.aubiowrapper import * 1 from template import aubio_unit_template 2 from localaubio import * 4 3 5 4 buf_size = 2048 6 5 channels = 3 7 6 8 class cvec_ test_case(unittest.TestCase):7 class cvec_unit(aubio_unit_template): 9 8 10 9 def setUp(self): -
tests/python/src/fvec.py
rb63b322 r974dddc 1 import unittest 2 3 from aubio.aubiowrapper import * 1 from template import aubio_unit_template 2 from localaubio import * 4 3 5 4 buf_size = 2048 6 5 channels = 3 7 6 8 class fvec_ test_case(unittest.TestCase):7 class fvec_unit(aubio_unit_template): 9 8 10 9 def setUp(self): -
tests/python/src/onset/peakpick.py
rb63b322 r974dddc 1 1 from template import aubio_unit_template 2 3 from aubio.aubiowrapper import * 2 from localaubio import * 4 3 5 4 buf_size = 7 -
tests/python/template.py
rb63b322 r974dddc 1 2 1 import unittest 3 2
Note: See TracChangeset
for help on using the changeset viewer.