commit: 859e1279af8df6179a8419baa3df4435d9bee393 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Fri Aug 8 14:22:36 2014 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Tue Aug 12 21:42:25 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=859e1279
Enable testing using travis-ci Make it easy to use travis-ci for testing on github mirror and forks. Reviewed-by: Alexander Berntsen <bernalex <AT> gentoo.org> --- .travis.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..6c8d873 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: python +python: + - 2.6 + - 2.7 + - 3.2 + - 3.3 + - 3.4 + - pypy +script: + - python -b -Wd pym/portage/tests/runTests
