summaryrefslogtreecommitdiff
path: root/HACKING.rst
diff options
context:
space:
mode:
authorDaniel Watkins <oddbloke@ubuntu.com>2020-07-13 12:09:22 -0400
committerGitHub <noreply@github.com>2020-07-13 12:09:22 -0400
commitb3bd56248a2ef095c89f69d413ce3487ad041e43 (patch)
tree1a5f0789651d1a1d456626cd97dadd804dd324f0 /HACKING.rst
parent3cec3881062490727c5fff1b16b53f0176f976f0 (diff)
downloadvyos-cloud-init-b3bd56248a2ef095c89f69d413ce3487ad041e43.tar.gz
vyos-cloud-init-b3bd56248a2ef095c89f69d413ce3487ad041e43.zip
HACKING.rst: add pytest.param pytest gotcha (#481)
Diffstat (limited to 'HACKING.rst')
-rw-r--r--HACKING.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/HACKING.rst b/HACKING.rst
index 27a38bc3..60c7b5e0 100644
--- a/HACKING.rst
+++ b/HACKING.rst
@@ -236,6 +236,14 @@ The following guidelines should be followed:
``util.write_file(tmpdir.join("some_file"), ...)``, you should
write ``util.write_file(tmpdir.join("some_file").strpath, ...)``.
+ * The `pytest.param`_ function cannot be used. It was introduced in
+ pytest 3.1, which means it is not available on xenial. The more
+ limited mechanism it replaced was removed in pytest 4.0, so is not
+ available in focal or later. The only available alternatives are
+ to write mark-requiring test instances as completely separate
+ tests, without utilising parameterisation, or to apply the mark to
+ the entire parameterized test (and therefore every test instance).
+
* Variables/parameter names for ``Mock`` or ``MagicMock`` instances
should start with ``m_`` to clearly distinguish them from non-mock
variables
@@ -302,6 +310,7 @@ The following guidelines should be followed:
.. _TestPrependBaseCommands: https://github.com/canonical/cloud-init/blob/master/cloudinit/tests/test_subp.py#L9
.. _assertion introspection: https://docs.pytest.org/en/latest/assert.html
.. _pytest 3.0: https://docs.pytest.org/en/latest/changelog.html#id1093
+.. _pytest.param: https://docs.pytest.org/en/latest/reference.html#pytest-param
.. _autospecced: https://docs.python.org/3.8/library/unittest.mock.html#autospeccing
Type Annotations