-
-
Notifications
You must be signed in to change notification settings - Fork 214
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
Update reverse-string
missing test cases
#917
base: main
Are you sure you want to change the base?
Update reverse-string
missing test cases
#917
Conversation
Hello. Thanks for opening a PR on Exercism 🙂 We ask that all changes to Exercism are discussed on our Community Forum before being opened on GitHub. To enforce this, we automatically close all PRs that are submitted. That doesn't mean your PR is rejected but that we want the initial discussion about it to happen on our forum where a wide range of key contributors across the Exercism ecosystem can weigh in. You can use this link to copy this into a new topic on the forum. If we decide the PR is appropriate, we'll reopen it and continue with it, so please don't delete your local branch. If you're interested in learning more about this auto-responder, please read this blog post. Note: If this PR has been pre-approved, please link back to this PR on the forum thread and a maintainer or staff member will reopen it. |
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 |
I'm pretty sure there is a discussion about this exercise with @siebenschlaefer somewhere. Maybe it was on the forums? |
Julia hides the grapheme tests behind a flag the student needs to set so that might be an option here. That'd require the example solution to be reworked. |
Great idea. I like that. We could hide it with compiler flag option and describe the how-to in |
@vaeng should I try to make these changes to the test cases to hide them behind a compiler flag in this same pull request? Could you elaborate as to how that wouldn't interfere with the test runner? |
Do you understand how the We could have a similar flag, like You do have to use this PR for both, as the CI checks will not run otherwise and they make a logical group for a PR. (Also you need some code formatting to pass the other check). Do you need help for these? |
I do! I just have a question: Would
That makes sense! I'll get on that then. I'll let you know if I have any further questions, thank you for your guidance. |
If you want to be clean, you can edit the example files in the .meta directory, to be able to solve the added cases. In that case you would also need to edit the
With the edited Moving the advanced tests outside the |
As mentioned by @BNAndras in #775 , some of
reverse-string
's test cases were created after opening the issue. This PR adds the missing test cases.