Run non-exercise tests in CI#523
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 testto the travis config to run non-exercise tests in CI as discussed in #519.Resolves #519.