1. 24 Apr, 2020 1 commit
    • moto's avatar
      Run unit test on CCI (#576) · a47dca4f
      moto authored
      * wip
      
      * Add test
      
      * add caching
      
      * fixup! add caching
      
      * fixup! fixup! add caching
      a47dca4f
  2. 22 Apr, 2020 3 commits
  3. 20 Apr, 2020 2 commits
  4. 17 Apr, 2020 3 commits
  5. 16 Apr, 2020 1 commit
  6. 14 Apr, 2020 3 commits
    • moto's avatar
      Simplify and abstract away asset access in test (#542) · 0e5581cb
      moto authored
      This PR aims the following things;
      1. Introduce and adopt helper function `get_asset_path` that abstract the logic to construct path to test assets.
      2. Remove `create_temp_assets_dir` anywhere except `test_io`.
      
      The benefits of doing so are,
      a. the test code becomes simpler (no manual construction of asset path with `os.path.join`)
      b. No unnecessary directory creation and file copies.
      
      For 2. and b. tests in `test_io.py` (or tests that use `torchaudio.save`) are the only tests that need to write file to the disc, where the use of temporary directory makes it cleaner, therefore, `create_temp_assets_dir` is not necessary elsewhere. (still, `test_io` does not need to copy the entire asset directory, but that's not the point here.)
      
      Also if any test is accidentally overwriting an asset data, not using a copy will make us aware of such behavior, so it is better to get rid of `create_temp_assets_dir`.
      0e5581cb
    • moto's avatar
      Remove duplicated lfilter tests (#541) · 0fa07595
      moto authored
      This lfilter tests were moved to `test_torchscript_consistency.py` in #507 and GPU tests were added in #528.
      We can safely remove this tests from `test_functional_filtering.py`.
      0fa07595
    • moto's avatar
      Move lfilter basic test to test_functional (#539) · af88b925
      moto authored
      af88b925
  7. 13 Apr, 2020 2 commits
  8. 09 Apr, 2020 3 commits
  9. 07 Apr, 2020 2 commits
  10. 06 Apr, 2020 3 commits
    • moto's avatar
      Fix GPU test skip logic (#516) · f37d37d6
      moto authored
      f37d37d6
    • moto's avatar
      Use torch.testing.assert_allclose (#513) · 5f5df1d6
      moto authored
      * grep -l 'torch.allclose' -r test | xargs sed -i 's/assert torch.allclose/torch.testing.assert_allclose/g'
      
      * grep -l 'torch.allclose' -r test | xargs sed -i 's/self.assertTrue(torch.allclose(\(.*\)))/torch.testing.assert_allclose(\1)/g'
      
      * Fix missing atol/rtol, wrong shape, argument order. Remove redundant shape assertions
      5f5df1d6
    • moto's avatar
      Simplify helper function (#514) · bc1ffb11
      moto authored
      bc1ffb11
  11. 03 Apr, 2020 9 commits
  12. 02 Apr, 2020 2 commits
  13. 01 Apr, 2020 1 commit
  14. 31 Mar, 2020 1 commit
  15. 30 Mar, 2020 3 commits
  16. 25 Mar, 2020 1 commit