-
Notifications
You must be signed in to change notification settings - Fork 520
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
Timeouts on Resistor Color exercise #1411
Comments
Yes, that's a test runner issue. I believe that there's a max duration hard-coded into the test runner; it may be worth exploring whether it's possible to increase that duration for this exercise at least. |
I see. It must be related to exercism/rust-test-runner#30 then. But I can't seem to find the timeout feature anywhere in the code -- so is that somewhere deeper in the infrastructure? |
It's likely related to the fact that this specific exercise has external crates. It's slower than all the other exercises locally and on the test runner. |
I still have same problem. I was advised to leave a comment in the issue if there is one. So here I am. Ready to provide information about my solution, if necessary. UPD: |
I had the same issue, worked on the 4th try |
The dependencies on this exercise were fairly large (~87MB). Depending on network speed, crates.io speed (I average ~20s) and then a non-cached build+test takes ~9s on a local, which I'm guessing is more powerful than the runner. It probably is just luck of the draw on who's will not timeout, or have to run back to back to try and try to hit a build runner who already downloaded the deps. I had timeouts on multiple ~6 tries before I got it to work.
not sure why it claims |
This still appears to be an issue. Any progress on this? I cannot submit results either locally or through the web editor. On my local machine, it takes less than 10 seconds. |
Having the same issue with this one. |
The test runner was deactivated for this exact reason. Currently, the learning mode (including this concept exercise) is disabled anyway. Related: Solving exercism/rust-test-runner#35 could improve build times of exercise solutions with external crates significantly. |
Some people appear to be experiencing sporadic timeouts on tests for this exercise. Their code appears to be fine locally.
Is that a test-runner issue?
The text was updated successfully, but these errors were encountered: