-
-
Notifications
You must be signed in to change notification settings - Fork 525
Run non-exercise tests in CI #523
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
I think we need to first add some magic to not create test coverage files in Travis. |
Is this something you can do @tommyschaefer ? |
From the Travis log:
|
- Adds `rake test` to Travis config file - Don't generate coverage data in CI
Clearly the answer was yes. ❤️ |
cf474e3
to
75d2082
Compare
This is a separate issue that I noticed while looking through the Travis log:
Are these still the old tests? Is this an issue in the new ones? |
Yes, this is a warning from the old tests. The new tests generated in #510 don't have this issue. The old tests use |
FWIW: This is a situation where I would have recommended NOT squashing the commits, as adding the rake command to the travis config and altering the test_helper.rb are two separate actions. It doesn't matter too much here, but it's perhaps a little lesson that squashing is not ALWAYS the thing to do. |
Ah! Good point! Thank you for the feedback! |
You can still separate them out, if you wanted to in this PR. But yes, no worries. |
This PR adds
rake test
to the travis config to run non-exercise tests in CI as discussed in #519.Resolves #519.