-
Notifications
You must be signed in to change notification settings - Fork 713
Remove unnecessary installations for linux CPU test #4037
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/audio/4037
Note: Links to docs will display an error until the docs builds have been completed. ❌ 9 New Failures, 5 Pending, 1 Unrelated FailureAs of commit 3245a23 with merge base bc3de07 ( NEW FAILURES - The following jobs have failed:
BROKEN TRUNK - The following job failed but were present on the merge base:👉 Rebase onto the `viable/strict` branch to avoid these failures
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
We have to merge #4031 first. |
It seems that CTC Decoder requires flashlight-text package, which it depends on pretty heavily. We could disable the tests for it. test_librispeech_lightning and test_mustc_lightning and test_tedlium3_lightning require lightning. It seems these just test lightning integration (which we're deprecating anyway), so we should be able to delete these tests. tacotron2/test_text_preprocessing.py requires unidecode. But we're only testing on ascii text. Would could give I'm still not sure how much we're testing the use of |
OK, thanks. Let's just skip all of those by setting the appropriate env variable e.g. |
Tests should no longer have external dependencies beyond scipy, numpy, pytorch, and testing utilities like parameterized. This PR removes the installation of dependencies beyond these when running CI.