McSinyx / comp

Migrated to https://git.sr.ht/~cnx/comp
https://pypi.org/project/comp/
GNU Affero General Public License v3.0
15 stars 1 forks source link

Use Travis CI to run Continuous Integration tests #10

Closed cclauss closed 6 years ago

cclauss commented 6 years ago

There are tons of tools in the GitHub Marketplace but the one that I use the most is Travis CI because it is free for Open Source projects like this one and it is quite flexible at running tests. This config file has Travis run flake8 tests on every pull request so that you can quickly see if there are breaking changes. At https://travis-ci.org/profile you would need to flip the switch for this repo on and the commit any change to the repo for the testing to begin.

cclauss commented 6 years ago

https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes E501 is 79 char lines and W191 is tabs in indentation.

McSinyx commented 6 years ago

Thank you, this is merged and Travis integration is on now.