From f6e5026d9dd2d3443efc879b346b0b776cfc19d6 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Wed, 18 May 2016 20:53:32 +0200 Subject: [PATCH] Use tox within travis This deduplicates the testing setup and commands --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 84134ed..3252b1b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,11 +6,9 @@ python: - 3.5 install: - - pip install -e . - - pip install flake8 + - pip install tox script: - - py.test -s - - flake8 radicale + - tox -e py sudo: false