Tres Seaver
2013-08-16 bfaf6b0fcfc33a9270d65e5a258f73dc4bf4ac06
Restore 'tests_require'.

Get automated tests working again.
2 files modified
25 ■■■■ changed files
setup.py 6 ●●●● patch | view | raw | blame | history
tox.ini 19 ●●●● patch | view | raw | blame | history
setup.py
@@ -43,6 +43,7 @@
    ]
if platform.system() == 'Java':
    docs_require = ['Sphinx']
    tests_require = ['WebTest']
@@ -50,9 +51,7 @@
    docs_require = ['Sphinx',
                    'repoze.sphinx.autointerface',
                   ]
    tests_require = ['Sphinx',
                     'docutils',
                     'WebTest < 2.0dev',
    tests_require = ['WebTest',
                     'nose',
                     'coverage'
                    ]
@@ -83,6 +82,7 @@
      zip_safe=False,
      install_requires = install_requires,
      test_suite="pyramid.tests",
      tests_require=install_requires + tests_require,
      extras_require = {
        'testing': tests_require,
        'docs': docs_require,
tox.ini
@@ -7,7 +7,6 @@
    python setup.py test -q
deps =
    Sphinx
    WebTest
    repoze.sphinx.autointerface
    virtualenv
    zope.configuration<3.8.0
@@ -15,6 +14,22 @@
    zope.interface<4.0.0
    zope.component<4.0.0
    WebOb<1.1.99
    WebTest<2.0dev
[testenv:py25]
commands =
    python setup.py test -q
deps =
    Sphinx
    repoze.sphinx.autointerface
    virtualenv
    simplejson
    zope.configuration<3.8.0
    zope.schema<4.0.0
    zope.interface<4.0.0
    zope.component<4.0.0
    WebOb<1.1.99
    WebTest<2.0dev
[testenv:cover]
basepython =
@@ -26,7 +41,6 @@
    coverage
    nosexcover
    Sphinx
    WebTest
    repoze.sphinx.autointerface
    virtualenv
    zope.configuration<3.8.0
@@ -34,3 +48,4 @@
    zope.interface<4.0.0
    zope.component<4.0.0
    WebOb<1.1.99
    WebTest<2.0dev