summaryrefslogtreecommitdiff
path: root/changelog
diff options
context:
space:
mode:
authorRan Benita <ran@unusedvar.com>2020-08-18 15:45:11 +0300
committerGitHub <noreply@github.com>2020-08-18 15:45:11 +0300
commitc98525bd2150573c36c2f1015e689dd1d884b0e0 (patch)
tree312c560fd0919ed10e4f9cbbb29654d0e2693e6c /changelog
parentafa4760cb8859c6c24c92ee8458cce329edbc206 (diff)
parenteddd993cf469df33268097f4bdaf60ccb8f50d3b (diff)
downloadpytest-c98525bd2150573c36c2f1015e689dd1d884b0e0.tar.gz
Merge pull request #7648 from bluetech/pylint-abc2
Only define gethookproxy, isinitpath on Session
Diffstat (limited to 'changelog')
-rw-r--r--changelog/7591.bugfix.rst1
-rw-r--r--changelog/7648.deprecation.rst3
2 files changed, 4 insertions, 0 deletions
diff --git a/changelog/7591.bugfix.rst b/changelog/7591.bugfix.rst
new file mode 100644
index 000000000..10de43a96
--- /dev/null
+++ b/changelog/7591.bugfix.rst
@@ -0,0 +1 @@
+pylint shouldn't complain anymore about unimplemented abstract methods when inheriting from :ref:`File <non-python tests>`.
diff --git a/changelog/7648.deprecation.rst b/changelog/7648.deprecation.rst
new file mode 100644
index 000000000..440b11141
--- /dev/null
+++ b/changelog/7648.deprecation.rst
@@ -0,0 +1,3 @@
+The ``gethookproxy()`` and ``isinitpath()`` methods of ``FSCollector`` and ``Package`` are deprecated;
+use ``self.session.gethookproxy()`` and ``self.session.isinitpath()`` instead.
+This should work on all pytest versions.