-
Notifications
You must be signed in to change notification settings - Fork 27.7k
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
Fix slow tests v4.2.0 #9561
Fix slow tests v4.2.0 #9561
Conversation
@@ -822,7 +822,9 @@ def prepare_config_and_inputs(self): | |||
} | |||
|
|||
def get_pretrained_model(self): | |||
return EncoderDecoderModel.from_encoder_decoder_pretrained("bert-large-uncased", "prophetnet-large-uncased") | |||
return EncoderDecoderModel.from_encoder_decoder_pretrained( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot for fixing the tests!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for all the fixes, you rock!
@@ -75,7 +75,7 @@ jobs: | |||
RUN_SLOW: yes | |||
run: | | |||
source .env/bin/activate | |||
pip install -r examples/requirements.txt | |||
pip install -r examples/_tests_requirements.txt |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch!
Fixes a bunch of slow tests that were failing.