Changeset a1bf01d
- Timestamp:
- Nov 28, 2016, 6:18:49 PM (8 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, sampler, yinfft+
- Children:
- fa6373c
- Parents:
- d98f3c0
- Location:
- python/tests
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/eval_pitch
rd98f3c0 ra1bf01d 25 25 import os.path 26 26 import numpy 27 from utils import array_from_text_file, array_from_yaml_file27 from .utils import array_from_text_file, array_from_yaml_file 28 28 from aubio import source, pitch, freqtomidi 29 29 -
python/tests/test_filter.py
rd98f3c0 ra1bf01d 4 4 from numpy.testing import TestCase, assert_equal, assert_almost_equal 5 5 from aubio import fvec, digital_filter 6 from utils import array_from_text_file6 from .utils import array_from_text_file 7 7 8 8 class aubio_filter_test_case(TestCase): -
python/tests/test_filterbank.py
rd98f3c0 ra1bf01d 6 6 import numpy as np 7 7 from aubio import cvec, filterbank, float_type 8 from utils import array_from_text_file8 from .utils import array_from_text_file 9 9 10 10 class aubio_filterbank_test_case(TestCase): -
python/tests/test_sink.py
rd98f3c0 ra1bf01d 5 5 from numpy.testing import TestCase 6 6 from aubio import fvec, source, sink 7 from utils import list_all_sounds, get_tmp_sink_path, del_tmp_sink_path7 from .utils import list_all_sounds, get_tmp_sink_path, del_tmp_sink_path 8 8 9 9 list_of_sounds = list_all_sounds('sounds') -
python/tests/test_slicing.py
rd98f3c0 ra1bf01d 4 4 from numpy.testing import TestCase, assert_equal 5 5 from aubio import slice_source_at_stamps 6 from utils import count_files_in_directory, get_default_test_sound7 from utils import count_samples_in_directory, count_samples_in_file6 from .utils import count_files_in_directory, get_default_test_sound 7 from .utils import count_samples_in_directory, count_samples_in_file 8 8 9 9 import tempfile -
python/tests/test_source.py
rd98f3c0 ra1bf01d 5 5 from numpy.testing import TestCase, assert_equal 6 6 from aubio import source 7 from utils import list_all_sounds7 from .utils import list_all_sounds 8 8 import numpy as np 9 9
Note: See TracChangeset
for help on using the changeset viewer.