Issue when updating from pytest 5.2.4 to pytest 5.3.0
See original GitHub issueHi there,
I run pytest with pytest-parallel (v 0.0.9) in a Gitlab CI-Pipeline. Without changing my code the pipeline jobs stopped working. The only thing that change was the pytest version.
Also the pipeline job doesn’t seem to stop. It’s stuck in the status running until I cancel it.
The failed command is:
- python setup.py install && pytest --workers 4
where setup.py install
is our project specific setup script.
The hopefully relevant output:
============================= test session starts ==============================
platform linux -- Python 3.7.5, pytest-5.3.0, py-1.8.0, pluggy-0.13.0
rootdir: /builds/fsd/odx-ninja
plugins: parallel-0.0.9
collected 70 items
pytest-parallel: 4 workers (processes), 1 test per worker (thread)
....Exception in thread Thread-1:
Traceback (most recent call last):
File "/usr/local/lib/python3.7/threading.py", line 926, in _bootstrap_inner
self.run()
File "/usr/local/lib/python3.7/site-packages/pytest_parallel/__init__.py", line 81, in run
run_test(self.session, item, None)
File "/usr/local/lib/python3.7/site-packages/pytest_parallel/__init__.py", line 51, in run_test
item.ihook.pytest_runtest_protocol(item=item, nextitem=nextitem)
File "/usr/local/lib/python3.7/site-packages/pluggy/hooks.py", line 286, in __call__
return self._hookexec(self, self.get_hookimpls(), kwargs)
File "/usr/local/lib/python3.7/site-packages/pluggy/manager.py", line 92, in _hookexec
return self._inner_hookexec(hook, methods, kwargs)
File "/usr/local/lib/python3.7/site-packages/pluggy/manager.py", line 86, in <lambda>
firstresult=hook.spec.opts.get("firstresult") if hook.spec else False,
File "/usr/local/lib/python3.7/site-packages/pluggy/callers.py", line 208, in _multicall
return outcome.get_result()
File "/usr/local/lib/python3.7/site-packages/pluggy/callers.py", line 80, in get_result
raise ex[1].with_traceback(ex[2])
File "/usr/local/lib/python3.7/site-packages/pluggy/callers.py", line 187, in _multicall
res = hook_impl.function(*args)
File "/usr/local/lib/python3.7/site-packages/_pytest/runner.py", line 82, in pytest_runtest_protocol
item.ihook.pytest_runtest_logfinish(nodeid=item.nodeid, location=item.location)
File "/usr/local/lib/python3.7/site-packages/pluggy/hooks.py", line 286, in __call__
return self._hookexec(self, self.get_hookimpls(), kwargs)
File "/usr/local/lib/python3.7/site-packages/pluggy/manager.py", line 92, in _hookexec
return self._inner_hookexec(hook, methods, kwargs)
File "/usr/local/lib/python3.7/site-packages/pluggy/manager.py", line 86, in <lambda>
firstresult=hook.spec.opts.get("firstresult") if hook.spec else False,
File "/usr/local/lib/python3.7/site-packages/pluggy/callers.py", line 208, in _multicall
return outcome.get_result()
File "/usr/local/lib/python3.7/site-packages/pluggy/callers.py", line 80, in get_result
raise ex[1].with_traceback(ex[2])
File "/usr/local/lib/python3.7/site-packages/pluggy/callers.py", line 187, in _multicall
res = hook_impl.function(*args)
File "/usr/local/lib/python3.7/site-packages/_pytest/terminal.py", line 468, in pytest_runtest_logfinish
main_color, _ = _get_main_color(self.stats)
File "/usr/local/lib/python3.7/site-packages/_pytest/terminal.py", line 1102, in _get_main_color
for found_type in stats:
File "<string>", line 2, in __iter__
File "/usr/local/lib/python3.7/multiprocessing/managers.py", line 825, in _callmethod
proxytype = self._manager._registry[token.typeid][-1]
AttributeError: 'NoneType' object has no attribute '_registry'
To avoid this we now fixed the pytest version to 5.2.4.
I hope I could help with my first issue ever 😃.
Best regards
Issue Analytics
- State:
- Created 4 years ago
- Comments:9 (6 by maintainers)
Top Results From Across the Web
pytest-5.2.4
pytest 5.2.4 has just been released to PyPI. This is a bug-fix release, being a drop-in replacement. To upgrade: pip install --upgrade pytest....
Read more >pytest - PyPI
The pytest framework makes it easy to write small tests, yet scales to support complex functional testing for applications and libraries.
Read more >Changelog — pytest documentation - Read the Docs
#4351: pytest's own tests now work with plugins like pytest-repeat being ... #6254: Fix compatibility with pytest-parallel (regression in pytest 5.3.0).
Read more >Pytest -m paging fails, yet get correct validation code - MongoDB
Does flask need updating? Thanks. (mflix) peter@haha~/Desktop/MongoUniv/M220P/mflix-python/tests $ pytest -m paging ...
Read more >pytest cannot be executed from Python 3.10.4 - Stack Overflow
I faced the same issue when using poetry. In my case, pytest was set to v5.2: [tool.poetry.dev-dependencies] pytest = "^5.2". After updating ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
When executing my pipeline with
-o console_output_style=classic
I can pytest 5.3. So this is a working workaround.Hi there, with pytest-parallel version 0.0.10 it now works.
Thanks a lot!