Skip to content
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

Skip failing ZeroShotAudioClassificationPipelineTests::test_small_model_pt for now #24867

Merged
merged 1 commit into from
Jul 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ class ZeroShotAudioClassificationPipelineTests(unittest.TestCase):
# and only CLAP would be there for now.
# model_mapping = {CLAPConfig: CLAPModel}

# TODO: fix me (ydshieh)
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

well, probably @lhoestq too

Copy link
Member

@lhoestq lhoestq Jul 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The issue comes from the CI using datasets @ git+https://github.com/huggingface/datasets@269fcd31a2e759c65ffd5952ecef13e6a0d92574 instead of the latest release of datasets (see "Show installed libraries and their versions" section in CircleCI)

This must be related to the CI runs I did on a dedicated branch to test transformers against datasets@main (looks like a pip site-packages cache issue)

This issue is also bothering me because now every time I test against datasets@main I end up with an outdated version of datasets@main (not the latest commit)

@unittest.skip("currently failing (probably due to `datasets` issue)")
@require_torch
def test_small_model_pt(self):
audio_classifier = pipeline(
Expand Down
Loading