summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-04-12 05:04:58 -0700
committerSteve Piercy <web@stevepiercy.com>2016-04-12 05:04:58 -0700
commit85c70a54036b67304fcc144387678bee1201c9d9 (patch)
tree663c5830a89e55b409e8c290a9531a7e1854306c /docs/narr
parent278afff7a9bbb42d96ac2199689c3141b9463b9c (diff)
parentebbe68144ad6a6022863aa4a29f5611fde02258f (diff)
downloadpyramid-85c70a54036b67304fcc144387678bee1201c9d9.tar.gz
pyramid-85c70a54036b67304fcc144387678bee1201c9d9.tar.bz2
pyramid-85c70a54036b67304fcc144387678bee1201c9d9.zip
Merge pull request #2480 from stevepiercy/docs/easy-install-to-pip.2104
quick_tour cleanup; rename testing_extras to tests_require
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]