-
Notifications
You must be signed in to change notification settings - Fork 161
1.6.0: pytest is failing in random units #880
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
It doesn't appear to be doing this for me locally, and the pipelines also look good. So either this is something specific to the environment, or it's a race condition triggered by perf differences. Judging by the list of failing tests, these all have to do with attach-by-PID. If there are any failed tests in the run, the test suite is supposed to keep the log files for those - they'll be under |
Hello, I have a similar result, attempting to package this for GNU Guix. It doesn't matter whether the tests run in a containerized environment or not. |
Perhaps because |
Yes, after adding GDB the failed tests count is down to 54 for me: |
24 failures were due to
|
Updating flask from 2.0.2 to 2.1.1 further reduced the test failures to:
Out of these 24 failures, 6 only occur when run in a the containerized build environment:
New logs attached. |
I've traced the root of the problem to an error importing debugpy in the launcher:
At the time the test run in my packaging debugpy is already installed to the system location made avaible via GUIX_PYTHONPATH (which gets picked up by Guix's own sitecustomize.py, part of the Python base install). It seems Copying the built package to |
Are you running the tests using |
Hmm, so I don't think I'll get to the bottom of this, but here are my final findings:
This seems to be load sensitive, as it varies between machines and with the count of processes given to xdist; here's with -n1 on the same machine (previous was with -n24):
The problem doesn't occur when run in tox. |
Hey @int19h, thanks, that seems related indeed! However even when setting PYTHONPATH to an absolute directory it still fails, e.g.
|
OK, last data point; avoiding parallel tests (xdist) completely resolves the failures:
My suggestion would be to include the tests in the |
The tests package is a package largely because it has quite a lot of helpers that the tests need to be able to import and use ( I guess this could all become |
Oh, I remember now - it was because having the tests separate means that they can be easily run against different versions of the package. BTW, note that the recommended pytest layouts do in fact include a separate directory with packages in it, specifically in a section that covers tox ("In this situation, it is strongly suggested to use a src layout where application root package resides in a sub-directory of your root"). In fact, I believe that's where we originally got it from. Going forward, we'll likely move to "importlib" pytest mode, making full use of namespaced tests. |
Oh, I see; I had overlooked that part about tox and the src/ subdirectory, thanks for pointing it out. Running tests against multiple versions seems a bit niche but nice to have! |
If it is already fixed is it possible to make new release? 🤔 |
Just tested 1.6.1 and now much more units are failing mostly by time outs. ========================================================================= short test summary info ==========================================================================
SKIPPED [5] tests/debugpy/test_multiproc.py:48: https://github.com/microsoft/ptvsd/issues/1887
SKIPPED [3] tests/debugpy/test_multiproc.py:476: job objects are specific to Windows
SKIPPED [3] tests/debugpy/test_run.py:233: Skipped
ERROR tests/__init__.py - FileNotFoundError: [Errno 2] No such file or directory: '/home/tkloczko/rpmbuild/BUILD/debugpy-1.6.1/tests/_logs/3.8-64/tests/debugpy/test_run....
FAILED tests/debugpy/test_args.py::test_args[attach_pid-code] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_args.py::test_args[attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_args.py::test_args[attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_attach.py::test_attach_pid_client[program-int] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_attach.py::test_attach_pid_client[program-str] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_django.py::test_django_breakpoint_no_multiproc[launch-template] - AssertionError: assert True == ('template' == 'code'
FAILED tests/debugpy/test_exception.py::test_systemexit[0---raised-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server...
FAILED tests/debugpy/test_django.py::test_django_exception_no_multiproc[launch-handled]
FAILED tests/debugpy/test_django.py::test_django_exception_no_multiproc[launch-unhandled]
FAILED tests/debugpy/test_django.py::test_django_template_exception_no_multiproc[launch]
FAILED tests/debugpy/test_django.py::test_django_breakpoint_multiproc[launch]
FAILED tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught--attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug...
FAILED tests/debugpy/test_exception.py::test_success_exitcodes[django--3-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug...
FAILED tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for deb...
FAILED tests/debugpy/test_exception.py::test_success_exitcodes[--0-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug serve...
FAILED tests/debugpy/test_exception.py::test_systemexit[0----attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to c...
FAILED tests/debugpy/test_exception.py::test_success_exitcodes[django-break_on_system_exit_zero-0-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Ti...
FAILED tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught--attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug ...
FAILED tests/debugpy/test_input.py::test_stdin_not_patched[program--attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to co...
FAILED tests/debugpy/test_django.py::test_django_breakpoint_no_multiproc[launch-code]
FAILED tests/debugpy/test_exception.py::test_success_exitcodes[django--3-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug ...
FAILED tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debu...
FAILED tests/debugpy/test_exception.py::test_success_exitcodes[--0-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server...
FAILED tests/debugpy/test_exception.py::test_systemexit[0----attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to co...
FAILED tests/debugpy/test_exception.py::test_success_exitcodes[django-break_on_system_exit_zero-0-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Tim...
FAILED tests/debugpy/test_input.py::test_stdin_not_patched[program-redirect_output-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for deb...
FAILED tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug s...
FAILED tests/debugpy/test_log.py::test_log_dir_env[program-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_exception.py::test_success_exitcodes[-break_on_system_exit_zero-0-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed ou...
FAILED tests/debugpy/test_exception.py::test_systemexit[1--uncaught--attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug ser...
FAILED tests/debugpy/test_exception.py::test_success_exitcodes[--3-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug serve...
FAILED tests/debugpy/test_exception.py::test_success_exitcodes[django-break_on_system_exit_zero-3-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Ti...
FAILED tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for...
FAILED tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug se...
FAILED tests/debugpy/test_input.py::test_input[program--attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_exception.py::test_success_exitcodes[-break_on_system_exit_zero-0-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out...
FAILED tests/debugpy/test_exception.py::test_systemexit[1--uncaught--attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug serv...
FAILED tests/debugpy/test_exception.py::test_success_exitcodes[--3-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server...
FAILED tests/debugpy/test_exception.py::test_success_exitcodes[django-break_on_system_exit_zero-3-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Tim...
FAILED tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for ...
FAILED tests/debugpy/test_log.py::test_log_dir_env[module-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_input.py::test_input[program-redirect_output-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to...
FAILED tests/debugpy/test_exception.py::test_systemexit[1-zero---attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server ...
FAILED tests/debugpy/test_exception.py::test_systemexit[nan----attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to...
FAILED tests/debugpy/test_log.py::test_log_dir_env[code-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_exception.py::test_success_exitcodes[-break_on_system_exit_zero-3-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed ou...
FAILED tests/debugpy/test_exception.py::test_systemexit[1---raised-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug serve...
FAILED tests/debugpy/test_exception.py::test_success_exitcodes[django--0-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug...
FAILED tests/debugpy/test_exception.py::test_systemexit[1-zero---attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server t...
FAILED tests/debugpy/test_exception.py::test_systemexit[nan----attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to ...
FAILED tests/debugpy/test_exception.py::test_success_exitcodes[-break_on_system_exit_zero-3-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out...
FAILED tests/debugpy/test_exception.py::test_systemexit[1---raised-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server...
FAILED tests/debugpy/test_exception.py::test_success_exitcodes[django--0-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug ...
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-python-None-None-launch(internalConsole)] - assert [0, 1] == [False, False]
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-python-None-None-launch(integratedTerminal)] - assert [0, 1] == [False, False]
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-python-None-None-launch(externalTerminal)] - assert [0, 1] == [False, False]
FAILED tests/debugpy/test_output.py::test_with_no_output[program-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-python-custompy-None-launch(internalConsole)] - assert [0, 1] == [False, False]
FAILED tests/debugpy/test_output.py::test_redirect_output[program-disabled-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug serve...
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-python-custompy-None-launch(integratedTerminal)] - assert [0, 1] == [False, False]
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-python-custompy-None-launch(externalTerminal)] - assert [0, 1] == [False, False]
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-pythonPath-custompy,-O-None-launch(internalConsole)] - assert [1, 1] == [True, False]
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-pythonPath-custompy,-O-None-launch(integratedTerminal)] - assert [1, 1] == [True, False]
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-pythonPath-custompy,-O-None-launch(externalTerminal)] - assert [1, 1] == [True, False]
FAILED tests/debugpy/test_flask.py::test_flask_breakpoint_no_multiproc[launch-code]
FAILED tests/debugpy/test_run.py::test_run[code-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-python-custompy,-O-None-launch(internalConsole)] - assert [1, 1] == [True, False]
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-python-custompy,-O-None-launch(integratedTerminal)] - assert [1, 1] == [True, False]
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-python-custompy,-O-None-launch(externalTerminal)] - assert [1, 1] == [True, False]
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-pythonPath-None-None-launch(internalConsole)] - assert [0, 1] == [False, False]
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-pythonPath-None-None-launch(integratedTerminal)] - assert [0, 1] == [False, False]
FAILED tests/debugpy/test_run.py::test_nodebug[module-launch(integratedTerminal)]
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-pythonPath-None-None-launch(externalTerminal)] - assert [0, 1] == [False, False]
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-pythonPath-custompy-None-launch(internalConsole)] - assert [0, 1] == [False, False]
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-pythonPath-custompy-None-launch(integratedTerminal)] - assert [0, 1] == [False, False]
FAILED tests/debugpy/test_run.py::test_custom_python_args[program-pythonPath-custompy-None-launch(externalTerminal)] - assert [0, 1] == [False, False]
FAILED tests/debugpy/test_output.py::test_redirect_output[program-enabled-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server...
FAILED tests/debugpy/test_run.py::test_frame_eval[-code-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_run.py::test_frame_eval[-program-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_run.py::test_run[program-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_run.py::test_frame_eval[yes-code-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_run.py::test_frame_eval[no-module-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_exception.py::test_systemexit[0--uncaught--attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug ser...
FAILED tests/debugpy/test_run.py::test_frame_eval[yes-program-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_run.py::test_frame_eval[-module-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_run.py::test_run[module-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for...
FAILED tests/debugpy/test_run.py::test_frame_eval[no-program-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_exception.py::test_systemexit[0---raised-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug serve...
FAILED tests/debugpy/test_run.py::test_frame_eval[no-code-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug...
FAILED tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught--attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug...
FAILED tests/debugpy/test_run.py::test_frame_eval[yes-module-attach_pid] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to connect.
FAILED tests/debugpy/test_exception.py::test_systemexit[nan-zero---attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug serve...
FAILED tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught--attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debu...
FAILED tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug ...
FAILED tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug s...
FAILED tests/debugpy/test_exception.py::test_systemexit[nan-zero---attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server...
FAILED tests/debugpy/test_exception.py::test_systemexit[1----attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to c...
FAILED tests/debugpy/test_exception.py::test_systemexit[0-zero---attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server ...
FAILED tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting f...
FAILED tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught--attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for deb...
FAILED tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for ...
FAILED tests/debugpy/test_exception.py::test_systemexit[0-zero---attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server t...
FAILED tests/debugpy/test_exception.py::test_systemexit[1----attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug server to co...
FAILED tests/debugpy/test_exception.py::test_systemexit[0--uncaught-raised-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for deb...
FAILED tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting fo...
FAILED tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught--attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug ...
FAILED tests/debugpy/test_exception.py::test_systemexit[0--uncaught-raised-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debu...
FAILED tests/debugpy/test_exception.py::test_systemexit[nan--uncaught--attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug se...
FAILED tests/debugpy/test_exception.py::test_systemexit[nan--uncaught--attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug s...
FAILED tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for d...
FAILED tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug se...
FAILED tests/debugpy/test_exception.py::test_systemexit[0--uncaught--attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug serv...
FAILED tests/debugpy/test_run.py::test_nodebug[module-launch(externalTerminal)]
FAILED tests/debugpy/test_exception.py::test_systemexit[nan---raised-attach_pid-program] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug ser...
FAILED tests/debugpy/test_exception.py::test_systemexit[nan---raised-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for debug serv...
FAILED tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-attach_pid-module] - debugpy.common.messaging.MessageHandlingError: Timed out waiting for de...
FAILED tests/debugpy/test_flask.py::test_flask_breakpoint_no_multiproc[launch-template]
FAILED tests/debugpy/test_flask.py::test_flask_template_exception_no_multiproc[launch]
FAILED tests/debugpy/test_flask.py::test_flask_exception_no_multiproc[launch-handled]
FAILED tests/debugpy/test_gevent.py::test_gevent[program-launch]
FAILED tests/debugpy/test_flask.py::test_flask_exception_no_multiproc[launch-unhandled]
FAILED tests/debugpy/test_flask.py::test_flask_breakpoint_multiproc[launch]
==================================================== 124 failed, 1062 passed, 11 skipped, 1 error in 593.64s (0:09:53) ===================================================== |
Looks like 1.6.2 is failing in the same units
|
Again, I see a lot of attach-by-PID tests failing, which is certainly not something that shows up in any of the pipelines, so it's likely to be specific to your environment. More tests might be failing for you now because we've re-enabled native code optimizations by default. I think there's something going on here that basically causes all the native code helpers to not work - weird libc version, perhaps? What kind of Linux are you running? Also, can you check that |
[tkloczko@devel-g2v SPECS]$ cat /proc/sys/kernel/yama/ptrace_scope
0
Please don't things like that. If it is anything what I can try to do to diagnose that issue please let me know. |
This is done at the debugger level meaning that we're using the -- you can still set |
Environment data
Actual behavior
pytest is failing in random units especially with default parallel (-n8) settings however even if pytest is executed witj -n1 it failf in random units.
Expected behavior
pytest should not fail in random units.
Two samples of pytest summary:
When pytest is executed with default -n8 usually fails 3-5 times more units.
The text was updated successfully, but these errors were encountered: