summaryrefslogtreecommitdiff
path: root/doc/en/example
diff options
context:
space:
mode:
Diffstat (limited to 'doc/en/example')
-rw-r--r--doc/en/example/assertion/test_setup_flow_example.py1
-rw-r--r--doc/en/example/costlysetup/sub_b/test_two.py1
-rw-r--r--doc/en/example/py2py3/conftest.py3
-rw-r--r--doc/en/example/py2py3/test_py2.py1
-rw-r--r--doc/en/example/py2py3/test_py3.py1
-rw-r--r--doc/en/example/simple.rst1
6 files changed, 0 insertions, 8 deletions
diff --git a/doc/en/example/assertion/test_setup_flow_example.py b/doc/en/example/assertion/test_setup_flow_example.py
index 100effa49..f2f7ec5cb 100644
--- a/doc/en/example/assertion/test_setup_flow_example.py
+++ b/doc/en/example/assertion/test_setup_flow_example.py
@@ -39,4 +39,3 @@ Note that ``setup_class(TestStateFullThing)`` is called and not
to insert ``setup_class = classmethod(setup_class)`` to make
your setup function callable.
"""
-
diff --git a/doc/en/example/costlysetup/sub_b/test_two.py b/doc/en/example/costlysetup/sub_b/test_two.py
index 6ed6ee4d8..381a82291 100644
--- a/doc/en/example/costlysetup/sub_b/test_two.py
+++ b/doc/en/example/costlysetup/sub_b/test_two.py
@@ -3,4 +3,3 @@ def test_something(setup):
def test_something_more(setup):
assert setup.timecostly == 1
-
diff --git a/doc/en/example/py2py3/conftest.py b/doc/en/example/py2py3/conftest.py
index 81cd1fb11..6fef90884 100644
--- a/doc/en/example/py2py3/conftest.py
+++ b/doc/en/example/py2py3/conftest.py
@@ -11,6 +11,3 @@ def pytest_pycollect_makemodule(path, parent):
bn = path.basename
if "py3" in bn and not py3 or ("py2" in bn and py3):
return DummyCollector(path, parent=parent)
-
-
-
diff --git a/doc/en/example/py2py3/test_py2.py b/doc/en/example/py2py3/test_py2.py
index e09ed9466..664acf178 100644
--- a/doc/en/example/py2py3/test_py2.py
+++ b/doc/en/example/py2py3/test_py2.py
@@ -4,4 +4,3 @@ def test_exception_syntax():
0/0
except ZeroDivisionError, e:
pass
-
diff --git a/doc/en/example/py2py3/test_py3.py b/doc/en/example/py2py3/test_py3.py
index a811f2bbc..1cda64473 100644
--- a/doc/en/example/py2py3/test_py3.py
+++ b/doc/en/example/py2py3/test_py3.py
@@ -4,4 +4,3 @@ def test_exception_syntax():
0/0
except ZeroDivisionError as e:
pass
-
diff --git a/doc/en/example/simple.rst b/doc/en/example/simple.rst
index 90d1bd4ad..e6737c012 100644
--- a/doc/en/example/simple.rst
+++ b/doc/en/example/simple.rst
@@ -854,4 +854,3 @@ This allows you to execute tests using the frozen
application with standard ``pytest`` command-line options::
./app_main --pytest --verbose --tb=long --junitxml=results.xml test-suite/
-