1. 08 Jan, 2021 1 commit
  2. 22 Dec, 2020 1 commit
    • moto's avatar
      Fbsync (#1121) · 47c2040e
      moto authored
      * Import torchaudio #1105 37692d8d
      
      Summary: Import torchaudio up to #1105 37692d8d
      
      Reviewed By: datumbox
      
      Differential Revision: D25671497
      
      fbshipit-source-id: 5af11c801321f2bb964245ac6ed74979310f4b5f
      47c2040e
  3. 19 Dec, 2020 1 commit
  4. 06 Aug, 2020 1 commit
  5. 05 Aug, 2020 1 commit
    • moto's avatar
      [CI] Run unit test with non-editable installation (#845) · 9ba02d5b
      moto authored
      We have been running unit test with editable installation. (i.e. `python setup.py develop`), with which we missed issues like #842. 
      
      This CC makes installation in CI non-editable, and change test directory structure so that the source code will not shadow the installed version of `torchaudio`. With simple `pytest test`, `pytest` modifies `sys.path` and prepend checked out repository, which shadows the installed version.
      
      To remedy this, the whole test suites has been moved from `./test` to `./test/torchaudio_unittest`. This adds nice module structure to our test code and we can do absolute import in each test module, which makes it possible again to run test with `python -m unittest torchaudio_unittest/XXX.py`
      
      This change does not affect the regular development process (`python setup.py develop` && `pytest test`)
      9ba02d5b
  6. 31 Jul, 2020 1 commit
  7. 22 Jul, 2020 1 commit
    • moto's avatar
      Refactor test_sox_effects (#805) · 05746042
      moto authored
      1. Move misplaced sox compatibility test (T,Fade, T.Vol, T.Vad) to test/test_sox_compatibility.py
      2. Move test_sox_effects to test/sox_effect/ where all the other functionalities from torchaudio.sox_effects are tested
      05746042
  8. 12 Jul, 2020 1 commit
  9. 08 Jul, 2020 1 commit
  10. 18 Jun, 2020 1 commit
    • moto's avatar
      Make TestCases backend-aware (#719) · b17da7a4
      moto authored
      * Make tests backend aware by introducing TorchaudioTestCase and reset backend for each TestCase.
      
      * Set backends for the test cases that require specific backend.
      b17da7a4
  11. 01 May, 2020 1 commit
    • moto's avatar
      Add README for test (#566) · ff1c6537
      moto authored
      * Add README for test
      
      * Apply review feedback
      
      * Add description to test_dataloader
      ff1c6537