-
-
Notifications
You must be signed in to change notification settings - Fork 41
created first R problem and scripts to automate testing with RUnit #2
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
Conversation
|
We're going to need files for |
|
Right. Done. exercism/problem-specifications#43 |
|
Would you mind rebasing this onto master? I've gotten all the basic infrastructure worked out for a "hello world" problem across the board, including an automated bit of feedback from rikki: https://github.com/exercism/rikki/blob/master/comments/hello/hello.md |
|
@morphatic sorry it took me so long to get this sorted. Would you mind splitting this up into several PRs? I can merge the hello-world exercise (since that has the requisite files in the x-common repo). If you would add the metadata for |
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.
Please don't activate the track until there are at least 10 exercises.
|
One more thing -- would you mind separating the hello-world commit from the track-level CI script for running the tests, please? These are not related to each other. |
|
In case you're interested, here's my favorite resource about commit messages: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html It assumes that each commit makes a single, atomic, cohesive change. That makes it much, much easier to manage the project. In terms of these language tracks, I tend to go for commits that look something like this: Or: This makes it easy to go through the git history later. |
Created a basic "Hello, World!" exercise for R.
Also created some scripts that will automate the testing process so that students will not have to understand RUnit to get started. It should work for both Linux/OSX and Windows. I tested it on OSX and Windows.
I also wrote instructions for getting started with R that can be merged into the docs project.