You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Ideally attach a minimal code sample to reproduce the decried issue.# Minimal means having the shortest code but still preserving the bug.
Expected behavior
If a test hangs that doesn't have a timeout limit, it'll hang forever. PR #473 was very slow (probably hanging and not progressing). With an autouse fixture, we can set a max timeout of 10 minute or something appropriate.
Additional context
Environment detail
PyTorch Version (e.g., 1.0):
OS (e.g., Linux):
How you installed PyTorch (conda, pip, source):
Build command you used (if compiling from source):
Python version:
CUDA/cuDNN version:
GPU models and configuration:
Any other relevant information:
The text was updated successfully, but these errors were encountered:
For a global max limit, 10 to 20 minutes seems reasonable to me.
And when needed, we can apply the timeout at the test level for specific functions using @pytest.mark.timeout(...).
🐛 Bug
To Reproduce
Steps to reproduce the behavior...
Code sample
Expected behavior
If a test hangs that doesn't have a timeout limit, it'll hang forever. PR #473 was very slow (probably hanging and not progressing). With an autouse fixture, we can set a max timeout of 10 minute or something appropriate.
Additional context
Environment detail
conda
,pip
, source):The text was updated successfully, but these errors were encountered: