Remove mock from requirements set.

This commit is contained in:
Dave Shawley 2015-09-14 07:37:17 -04:00
parent ce107d8d1e
commit 5c0b5b239c
3 changed files with 2 additions and 7 deletions

View file

@ -4,7 +4,7 @@ python:
- pypy - pypy
- 3.4 - 3.4
before_install: before_install:
- pip install nose coverage codecov mock tornado - pip install nose coverage codecov tornado
install: install:
- pip install -e . - pip install -e .
script: nosetests script: nosetests

View file

@ -11,9 +11,6 @@ install_requires = []
setup_requires = [] setup_requires = []
tests_require = ['nose>=1.3,<2', 'tornado>3,<5'] tests_require = ['nose>=1.3,<2', 'tornado>3,<5']
if sys.version_info < (3, 0):
tests_require.append('mock')
setuptools.setup( setuptools.setup(
name='sprockets.logging', name='sprockets.logging',
version=sprockets.logging.__version__, version=sprockets.logging.__version__,

View file

@ -1,5 +1,5 @@
[tox] [tox]
envlist = py27,py34,tornado3 envlist = py27,py34,pypy,pypy3,tornado3
indexserver = indexserver =
default = https://pypi.python.org/simple default = https://pypi.python.org/simple
toxworkdir = build/tox toxworkdir = build/tox
@ -9,11 +9,9 @@ skip_missing_interpreters = true
commands = nosetests [] commands = nosetests []
deps = deps =
nose nose
mock
tornado tornado
[testenv:tornado3] [testenv:tornado3]
deps = deps =
nose nose
mock
tornado>=3,<4 tornado>=3,<4