summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBruno Oliveira <nicoddemus@gmail.com>2017-08-08 21:11:11 +0000
committerBruno Oliveira <nicoddemus@gmail.com>2017-08-08 21:11:11 +0000
commit45d2962e97eae33ea71adee74911952c730bc039 (patch)
treec4a32225069dacedf78069f466ee3999370fe882 /doc
parent8b322afcdb094c2c634a4f01c07facfab644b847 (diff)
downloadpytest-45d2962e97eae33ea71adee74911952c730bc039.tar.gz
Preparing release version 3.2.1
Diffstat (limited to 'doc')
-rw-r--r--doc/en/announce/index.rst1
-rw-r--r--doc/en/announce/release-3.2.1.rst22
-rw-r--r--doc/en/example/simple.rst6
3 files changed, 26 insertions, 3 deletions
diff --git a/doc/en/announce/index.rst b/doc/en/announce/index.rst
index 8a2f15d8d..b6df7deec 100644
--- a/doc/en/announce/index.rst
+++ b/doc/en/announce/index.rst
@@ -6,6 +6,7 @@ Release announcements
:maxdepth: 2
+ release-3.2.1
release-3.2.0
release-3.1.3
release-3.1.2
diff --git a/doc/en/announce/release-3.2.1.rst b/doc/en/announce/release-3.2.1.rst
new file mode 100644
index 000000000..899ffcd4b
--- /dev/null
+++ b/doc/en/announce/release-3.2.1.rst
@@ -0,0 +1,22 @@
+pytest-3.2.1
+=======================================
+
+pytest 3.2.1 has just been released to PyPI.
+
+This is a bug-fix release, being a drop-in replacement. To upgrade::
+
+ pip install --upgrade pytest
+
+The full changelog is available at http://doc.pytest.org/en/latest/changelog.html.
+
+Thanks to all who contributed to this release, among them:
+
+* Alex Gaynor
+* Bruno Oliveira
+* Florian Bruhin
+* Ronny Pfannschmidt
+* Srinivas Reddy Thatiparthy
+
+
+Happy testing,
+The pytest Development Team
diff --git a/doc/en/example/simple.rst b/doc/en/example/simple.rst
index be3f8d2e8..176063a1a 100644
--- a/doc/en/example/simple.rst
+++ b/doc/en/example/simple.rst
@@ -382,9 +382,9 @@ Now we can profile which test functions execute the slowest::
test_some_are_slow.py ...
======= slowest 3 test durations ========
- 0.20s call test_some_are_slow.py::test_funcslow2
- 0.10s call test_some_are_slow.py::test_funcslow1
- 0.00s setup test_some_are_slow.py::test_funcfast
+ 0.30s call test_some_are_slow.py::test_funcslow2
+ 0.20s call test_some_are_slow.py::test_funcslow1
+ 0.10s call test_some_are_slow.py::test_funcfast
======= 3 passed in 0.12 seconds ========
incremental testing - test steps