소스 검색

Use tox within travis

This deduplicates the testing setup and commands
Markus Unterwaditzer 9 년 전
부모
커밋
f6e5026d9d
1개의 변경된 파일2개의 추가작업 그리고 4개의 파일을 삭제
  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