From aadc36515d1a87af2bad846d61fffaac66c8ba40 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Wed, 10 Feb 2016 17:25:54 +0000 Subject: [PATCH] remove pypy test; reconf build env --- .scrutinizer.yml | 2 +- .travis.yml | 17 ++++++++--------- requirements.txt | 2 +- setup.py | 2 +- tox.ini | 2 +- 5 files changed, 12 insertions(+), 13 deletions(-) diff --git a/.scrutinizer.yml b/.scrutinizer.yml index ad1335b..e8c4727 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -5,4 +5,4 @@ filter: tools: external_code_coverage: timeout: 600 - runs: 5 + runs: 4 diff --git a/.travis.yml b/.travis.yml index c410474..30abd9a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,16 @@ language: python -env: - - TOXENV=py27 - - TOXENV=py33 - - TOXENV=py34 - - TOXENV=pypy - - TOXENV=pypy3 +sudo: false +python: + - "2.7" + - "3.3" + - "3.4" + - "3.5" install: - - pip install tox + - make init - pip install coveralls - pip install scrutinizer-ocular - - pip install gevent script: - - tox -e $TOXENV + - make test after_script: - coveralls - ocular diff --git a/requirements.txt b/requirements.txt index a800949..e77cd7e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ coverage==4.0.3 enum34==1.1.2 -gevent==1.1rc2 +gevent==1.1rc3 mock==1.3.0 nose==1.3.7 protobuf==2.6.1 diff --git a/setup.py b/setup.py index 20dba31..c74fdb5 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ install_requires = [ 'requests>=2.9.1', 'vdf>=1.10', 'pycrypto>=2.6.1', - 'gevent>=1.1rc2', + 'gevent>=1.1rc3', 'protobuf>=2.6.1', ] diff --git a/tox.ini b/tox.ini index a4194bf..2712869 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27, py33, py34, pypy, pypy3 +envlist = py27, py34 [testenv] setenv =