소스 검색

Remove tox

Florian Mounier 9 년 전
부모
커밋
092d906aba
2개의 변경된 파일2개의 추가작업 그리고 13개의 파일을 삭제
  1. 2 2
      .travis.yml
  2. 0 11
      tox.ini

+ 2 - 2
.travis.yml

@@ -6,9 +6,9 @@ python:
   - 3.5
 
 install:
-  - pip install tox
+  - pip install -e .[test]
 
 script:
-  - tox -e py
+  - python setup.py test
 
 sudo: false

+ 0 - 11
tox.ini

@@ -1,11 +0,0 @@
-[tox]
-envlist = py33, py34, py35
-
-[testenv]
-deps =
-  flake8
-  pytest
-
-commands =
-  flake8
-  py.test