diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-04-12 04:52:20 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-04-12 04:52:20 -0700 |
| commit | ebbe68144ad6a6022863aa4a29f5611fde02258f (patch) | |
| tree | 663c5830a89e55b409e8c290a9531a7e1854306c /docs/narr/commandline.rst | |
| parent | 277013f86cd7d4ed2c89fef0b270006c69ccfdd4 (diff) | |
| download | pyramid-ebbe68144ad6a6022863aa4a29f5611fde02258f.tar.gz pyramid-ebbe68144ad6a6022863aa4a29f5611fde02258f.tar.bz2 pyramid-ebbe68144ad6a6022863aa4a29f5611fde02258f.zip | |
- use an environment variable and venv. See https://github.com/Pylons/pyramid/pull/2468#discussion_r59311019
- rename stanza from `testing_extras` to `tests_require`
- switch from nose to pytest
Diffstat (limited to 'docs/narr/commandline.rst')
| -rw-r--r-- | docs/narr/commandline.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/narr/commandline.rst b/docs/narr/commandline.rst index 3e164ee8d..7f112550f 100644 --- a/docs/narr/commandline.rst +++ b/docs/narr/commandline.rst @@ -926,7 +926,7 @@ top-level directory, your ``setup.py`` file will look something like this: requires = ['pyramid', 'pyramid_debugtoolbar'] - testing_extras = [ + tests_require = [ 'WebTest >= 1.3.1', # py3 compat 'pytest', # includes virtualenv 'pytest-cov', @@ -951,7 +951,7 @@ top-level directory, your ``setup.py`` file will look something like this: zip_safe=False, install_requires=requires, extras_require={ - 'testing': testing_extras, + 'testing': tests_require, }, entry_points = """\ [paste.app_factory] @@ -993,7 +993,7 @@ The result will be something like: requires = ['pyramid', 'pyramid_debugtoolbar'] - testing_extras = [ + tests_require = [ 'WebTest >= 1.3.1', # py3 compat 'pytest', # includes virtualenv 'pytest-cov', @@ -1018,7 +1018,7 @@ The result will be something like: zip_safe=False, install_requires=requires, extras_require={ - 'testing': testing_extras, + 'testing': tests_require, }, entry_points = """\ [paste.app_factory] |
