diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-04-08 12:50:10 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-04-08 12:50:10 -0700 |
| commit | c239c4a68b41dab9d3f4477ea7de6431ec7548dd (patch) | |
| tree | 69fd25c302d769b03f82fe3966934608328f8b94 /docs | |
| parent | aa51dcc629028fda64ee83340d9b3981be7fbb29 (diff) | |
| download | pyramid-c239c4a68b41dab9d3f4477ea7de6431ec7548dd.tar.gz pyramid-c239c4a68b41dab9d3f4477ea7de6431ec7548dd.tar.bz2 pyramid-c239c4a68b41dab9d3f4477ea7de6431ec7548dd.zip | |
simplify test dependencies per https://github.com/Pylons/pyramid/pull/2442/files/aa51dcc629028fda64ee83340d9b3981be7fbb29#r59052781
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/tutorials/wiki2/installation.rst | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/docs/tutorials/wiki2/installation.rst b/docs/tutorials/wiki2/installation.rst index 70c77f57f..221b62ece 100644 --- a/docs/tutorials/wiki2/installation.rst +++ b/docs/tutorials/wiki2/installation.rst @@ -263,11 +263,8 @@ we need to edit our ``setup.py``: 'waitress', ] - tests_require = [ + testing_extras = [ 'WebTest >= 1.3.1', # py3 compat - ] - - testing_extras = tests_require + [ 'pytest', # includes virtualenv 'pytest-cov', ] @@ -293,7 +290,6 @@ we need to edit our ``setup.py``: extras_require={ 'testing': testing_extras, }, - tests_require=tests_require, install_requires=requires, entry_points="""\ [paste.app_factory] |
