Parcourir la source

Use tox within travis

This deduplicates the testing setup and commands
Markus Unterwaditzer il y a 9 ans
Parent
commit
f6e5026d9d
1 fichiers modifiés avec 2 ajouts et 4 suppressions
  1. 2 4
      .travis.yml

+ 2 - 4
.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