-
-
Notifications
You must be signed in to change notification settings - Fork 141
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
ci: Allow for single exercise test exection #849
ci: Allow for single exercise test exection #849
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like the workflow improvement! That's very welcome.
I haven't tested the suggested change, so take care. Using the -name
filter allows wildcards like b*
, too. Please test that this works also.
Thanks for your feedback, will have a look at in the following days. |
This works if b* is wrapped in quotes.
|
I'll have to check why it's failing, will look into it. |
It fails, because the shell has |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for improving the contribution workflow! I also missed such functionality when checking changes.
I often want to execute only one of the tests in the exercises when adjusting tests, to speed up the process.
This PR will allow me to e.g. run only the tests for exercise
book-store
by adding an additional parameter.It can be done in more way.
PHPUNIT_BIN='phpunit' bin/test.sh book-store
I hope this will get accepted as it gives me a better workflow when updating the PHP track.