summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/MyProject/setup.py4
-rw-r--r--docs/narr/commandline.rst8
2 files changed, 6 insertions, 6 deletions
diff --git a/docs/narr/MyProject/setup.py b/docs/narr/MyProject/setup.py
index 8d6e243d5..a911eff6d 100644
--- a/docs/narr/MyProject/setup.py
+++ b/docs/narr/MyProject/setup.py
@@ -15,7 +15,7 @@ requires = [
'waitress',
]
-testing_extras = [
+tests_require = [
'WebTest >= 1.3.1', # py3 compat
'pytest', # includes virtualenv
'pytest-cov',
@@ -39,7 +39,7 @@ setup(name='MyProject',
include_package_data=True,
zip_safe=False,
extras_require={
- 'testing': testing_extras,
+ 'testing': tests_require,
},
install_requires=requires,
entry_points="""\
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]