-
-
Notifications
You must be signed in to change notification settings - Fork 35
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
Implement Continuous Integration #3
Comments
@rpottsoh I don't know. I don't think so. Will AppVeyor work? |
Good question. I am not familiar with AppVeyor. Will go read about now.
|
At quick glance it looks like it provides a VM in which we would need to install Windows for Delphi to run on or is AppVeyor providing Windows too? This looks promising. Thanks for pointing it out.
|
Reference links, @rpottsoh ?? |
AppVeyor landing page |
Just noticed file |
Yeah, C#, F#, and it's also turned on for VB.NET and (now) Delphi. |
@kotp how do we proceed? I am out of my element here, but interested to watch, learn and help. |
We can work it after your happy anniversary weekend! |
Implement a test suite that can run both locally and on Travis CI, that verifies that the example code passes the test suite for each exercise.
Things to consider:
If some tests are marked as skipped or pending in some way, then CI should remove these annotations so that all the tests run against the example, not just the first test.
If we need to rewrite the files in any way, we should copy the exercise to a tmp directory first, so that we don't accidentally end up committing changes that are just for continuous integration or testing purposes.
We should make it possible to test just one exercise at a time, because testing everything can take a while, and very often people are just working on one exercise and will only need to run the full test suite before committing the change.
The text was updated successfully, but these errors were encountered: