Skip to content

Commit 3858cf0

Browse files
authored
Merge branch 'master' into j1
2 parents fea822b + e1b11d6 commit 3858cf0

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
1.6.1 (2019-07-22)
2+
------------------
3+
4+
* `#98 <https://github.com/pytest-dev/execnet/pull/98>`__: Internal change to avoid
5+
using deprecated ``funcargs`` name in pytest 5+.
6+
17
1.6.0 (2019-03-31)
28
------------------
39

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
.. warning::
2+
3+
execnet is currently not maintained
4+
5+
16
execnet: distributed Python deployment and communication
27
========================================================
38

testing/conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,16 +83,16 @@ def getsocketspec(config=None):
8383

8484

8585
def pytest_generate_tests(metafunc):
86-
if 'gw' in metafunc.funcargnames:
87-
assert 'anypython' not in metafunc.funcargnames, "need combine?"
86+
if 'gw' in metafunc.fixturenames:
87+
assert 'anypython' not in metafunc.fixturenames, "need combine?"
8888
if hasattr(metafunc.function, 'gwtypes'):
8989
gwtypes = metafunc.function.gwtypes
9090
elif hasattr(metafunc.cls, 'gwtype'):
9191
gwtypes = [metafunc.cls.gwtype]
9292
else:
9393
gwtypes = ['popen', 'socket', 'ssh', 'proxy']
9494
metafunc.parametrize("gw", gwtypes, indirect=True)
95-
elif 'anypython' in metafunc.funcargnames:
95+
elif 'anypython' in metafunc.fixturenames:
9696
metafunc.parametrize(
9797
"anypython", indirect=True, argvalues=(
9898
'sys.executable', 'python2.7', 'pypy', 'jython',

0 commit comments

Comments
 (0)