- Timestamp:
- Nov 1, 2018, 2:53:33 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:
- 40b2be2
- Parents:
- 48a0e5a
- Location:
- python/tests
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/test_fft.py
r48a0e5a r319edae 1 1 #! /usr/bin/env python 2 2 3 from unittest import main4 3 from numpy.testing import TestCase 5 4 from numpy.testing import assert_equal, assert_almost_equal … … 193 192 194 193 if __name__ == '__main__': 194 from unittest import main 195 195 main() -
python/tests/test_filter.py
r48a0e5a r319edae 1 1 #! /usr/bin/env python 2 2 3 from unittest import main4 3 from numpy.testing import TestCase, assert_equal, assert_almost_equal 5 4 from aubio import fvec, digital_filter … … 85 84 86 85 if __name__ == '__main__': 86 from unittest import main 87 87 main() -
python/tests/test_filterbank.py
r48a0e5a r319edae 88 88 89 89 if __name__ == '__main__': 90 import nose291 nose2.main()90 from unittest import main 91 main() -
python/tests/test_filterbank_mel.py
r48a0e5a r319edae 49 49 50 50 if __name__ == '__main__': 51 import nose252 nose2.main()51 from unittest import main 52 main() -
python/tests/test_fvec_shift.py
r48a0e5a r319edae 31 31 self.run_shift_ishift(7) 32 32 33 from unittest import main34 33 if __name__ == '__main__': 34 from unittest import main 35 35 main() -
python/tests/test_mathutils.py
r48a0e5a r319edae 1 1 #! /usr/bin/env python 2 2 3 from unittest import main4 3 from numpy.testing import TestCase, assert_equal 5 4 from numpy import array, arange, isnan, isinf … … 102 101 103 102 if __name__ == '__main__': 103 from unittest import main 104 104 main() -
python/tests/test_musicutils.py
r48a0e5a r319edae 1 1 #! /usr/bin/env python 2 2 3 from unittest import main4 3 import numpy as np 5 4 from numpy.testing import TestCase … … 86 85 87 86 if __name__ == '__main__': 87 from unittest import main 88 88 main() -
python/tests/test_onset.py
r48a0e5a r319edae 1 1 #! /usr/bin/env python 2 2 3 from unittest import main4 3 from numpy.testing import TestCase, assert_equal, assert_almost_equal 5 4 from aubio import onset … … 85 84 86 85 if __name__ == '__main__': 86 from unittest import main 87 87 main()
Note: See TracChangeset
for help on using the changeset viewer.