irmen / Tale

Interactive fiction (text adventure) and Mud framework
http://tale.readthedocs.io/
GNU Lesser General Public License v3.0
145 stars 35 forks source link

Add CI #14

Closed sils closed 9 years ago

sils commented 9 years ago

Hey, that's a cool thing you built here! May I suggest adding continuous integration against supported python versions? Otherwise tests will break sooner or later, promised. It's really easy to do with travis against linux.

sils commented 9 years ago

then you'll be able to remove

(maybe it runs on 3.2 and 3.3 as well but that is not tested.)

from your readme as well ;)

sils commented 9 years ago

If you want windows CI, you can almost copy our config from https://github.com/coala-analyzer/coala/blob/master/.misc/appveyor.yml and if you want builds against mac you can use something like this https://github.com/coala-analyzer/coala/blob/master/.travis.yml and add linux builds there (we're using CircleCI for linux but having linux and mac together on travis is probably easier for you).

irmen commented 9 years ago

thanks for the PR