Update test_inference.py

Make the timeout 5-min for now, see if we can get a pass...
This commit is contained in:
Ross Wightman 2020-05-07 10:14:24 -07:00 committed by GitHub
parent 14e01b878c
commit 305a2db705
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ import torch
from timm import list_models, create_model
@pytest.mark.timeout(60)
@pytest.mark.timeout(360)
@pytest.mark.parametrize('model_name', list_models())
@pytest.mark.parametrize('batch_size', [1])
def test_model_forward(model_name, batch_size):