From 130f7d5f200e103b7c6681e565627131c351ea48 Mon Sep 17 00:00:00 2001 From: Christian Fetzer Date: Sat, 17 Mar 2018 16:16:14 +0100 Subject: [PATCH] project: Switch to Travis CI Add Travis CI configuration, replace Circle CI build badge with Travis CI build badge. --- .travis.yml | 15 +++++++++++++++ README.rst | 6 +++--- 2 files changed, 18 insertions(+), 3 deletions(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..3686227 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: python +install: pip install tox coveralls +matrix: + fast_finish: true + include: + - python: 3.5 + env: TOXENV=flake8 + - python: 3.5 + env: TOXENV=pylint + - python: 2.7 + env: TOXENV=py27 + - python: 3.5 + env: TOXENV=py35 +script: tox +after_success: coveralls diff --git a/README.rst b/README.rst index 1ae6628..a4374e5 100644 --- a/README.rst +++ b/README.rst @@ -1,6 +1,6 @@ -.. image:: https://circleci.com/gh/fetzerch/fritzcollectd.svg?style=shield - :target: https://circleci.com/gh/fetzerch/fritzcollectd - :alt: Circle CI Status +.. image:: https://travis-ci.org/fetzerch/fritzcollectd.svg?branch=master + :target: https://travis-ci.org/fetzerch/fritzcollectd + :alt: Travis CI Status .. image:: https://coveralls.io/repos/github/fetzerch/fritzcollectd/badge.svg?branch=master :target: https://coveralls.io/github/fetzerch/fritzcollectd?branch=master