-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
with: test / ;with in all test.8th #124
Conversation
This PR touches files which potentially affect the outcome of the tests of an exercise. This will cause all students' solutions to affected exercises to be re-tested. If this PR does not affect the result of the test (or, for example, adds an edge case that is not worth rerunning all tests for), please add the following to the merge-commit message which will stops student's tests from re-running. Please copy-paste to avoid typos.
For more information, refer to the documentation. If you are unsure whether to add the message or not, please ping |
Right, that totally makes sense. |
@ErikSchierboom so when the Test/ci fails because I don't have the token |
You have to be confident that the changes will pass the tests. I don't see anything dangerous here, and I assume you tested locally before creating the PR |
It's a security/permissions thing. The only reason to workaround this is by creating the PR, not via the fork, but directly on this repo. In other words: to push the branch to this repo and not your fork, and then use that to create the PR from. This should work as you have repo permissions. |
Let's just merge and see |
It was almost correct, just acronym failing: https://github.com/exercism/8th/actions/runs/8156564580/job/22294372857 |
Fixed in #125 |
CLI-based testing issue reported in https://forum.exercism.org/t/having-trouble-with-8th/10069
Will take this up with Ron Aaron, that a
with: test
at the end of the./libs/exercism/test
doesn't appear to work when the file isneeds
included and that thewith: test
is required again in thetest.8th
file itself.In
hello-world
, thewith: test
at the end of./libs/exercise/test
appears to be being ignored. Puttingwith: test
after theneeds
inhello-world
'stest.8th
makes thetest
namespace visible to the tests intest.8th
LATER
According to this conversation there's no point in putting
with: test
at the bottom of./libs/exercism/test
, so I've removed them.