summaryrefslogtreecommitdiff
path: root/lib/spack/external/_pytest/deprecated.py
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2017-01-17 01:36:03 -0800
committerTodd Gamblin <tgamblin@llnl.gov>2017-01-17 01:36:03 -0800
commit52a9e5d2a31b4a66ce51d0ff03ab709417dee6dc (patch)
treeef8216231785feaf7ee3f2d037f4240bdd115be8 /lib/spack/external/_pytest/deprecated.py
parent4f8167b7ed8fe156e1f350aaa37230ab07a27895 (diff)
parent18563177775509286e5b53744ea5924bc450d9c2 (diff)
downloadspack-0.10.0.tar.gz
spack-0.10.0.tar.bz2
spack-0.10.0.tar.xz
spack-0.10.0.zip
Merge branch 'releases/v0.10.0'v0.10.0
Diffstat (limited to 'lib/spack/external/_pytest/deprecated.py')
-rw-r--r--lib/spack/external/_pytest/deprecated.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/spack/external/_pytest/deprecated.py b/lib/spack/external/_pytest/deprecated.py
new file mode 100644
index 0000000000..6edc475f6e
--- /dev/null
+++ b/lib/spack/external/_pytest/deprecated.py
@@ -0,0 +1,24 @@
+"""
+This module contains deprecation messages and bits of code used elsewhere in the codebase
+that is planned to be removed in the next pytest release.
+
+Keeping it in a central location makes it easy to track what is deprecated and should
+be removed when the time comes.
+"""
+
+
+MAIN_STR_ARGS = 'passing a string to pytest.main() is deprecated, ' \
+ 'pass a list of arguments instead.'
+
+YIELD_TESTS = 'yield tests are deprecated, and scheduled to be removed in pytest 4.0'
+
+FUNCARG_PREFIX = (
+ '{name}: declaring fixtures using "pytest_funcarg__" prefix is deprecated '
+ 'and scheduled to be removed in pytest 4.0. '
+ 'Please remove the prefix and use the @pytest.fixture decorator instead.')
+
+SETUP_CFG_PYTEST = '[pytest] section in setup.cfg files is deprecated, use [tool:pytest] instead.'
+
+GETFUNCARGVALUE = "use of getfuncargvalue is deprecated, use getfixturevalue"
+
+RESULT_LOG = '--result-log is deprecated and scheduled for removal in pytest 4.0'