Disable tests for deprecated functionality
PLEASE NOTE THAT THE TORCHAUDIO REPOSITORY IS NO LONGER ACTIVELY MONITORED. You may not get a response. For open discussions, visit https://discuss.pytorch.org/.
This is a draft PR for testing the CI failures.
:link: Helpful Links
:test_tube: See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/audio/3942
- :page_facing_up: Preview Python docs built from this PR
Note: Links to docs will display an error until the docs builds have been completed.
:x: 9 New Failures
As of commit 4ceb567cec1ad59c5115715180bf035126254c28 with merge base 4e94321c54617dd738a05bfedfc28bc0fa635b5c ():
NEW FAILURES - The following jobs have failed:
- .github/workflows/bandit.yml (gh)
- .github/workflows/build_docs.yml (gh)
- .github/workflows/integration-test.yml (gh)
- .github/workflows/lint.yml (gh)
- .github/workflows/pr-labels.yml (gh)
- .github/workflows/unittest-linux-gpu.yml (gh)
- .github/workflows/unittest-macos-cpu.yml (gh)
- .github/workflows/unittest-windows-cpu.yml (gh)
- .github/workflows/unittest-windows-gpu.yml (gh)
This comment was automatically generated by Dr. CI and updates every 15 minutes.
Most of the errors are of the form 'RuntimeError: Error saving audio file: failed to open file /tmp/...'. These don't occur when I run the tests locally. I assume this means that the script doesn't have permission to write to the tmp directory. But tmp should have been given 777 permissions in the github actions yaml.
It seems like the CI hasn't been working for a while: the last release didn't seem to work either (https://github.com/pytorch/audio/actions/runs/14930335102).
It's odd that torchaudio_unittest/io/stream_writer_test.py is still running: I thought pytest's -k 'not /io/' should exclude that. It seems to on my machine.