Skip to content

Instantly share code, notes, and snippets.

@mcepl
Created May 11, 2022 15:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcepl/43ada31674951bdbd62d8d560575a9f1 to your computer and use it in GitHub Desktop.
Save mcepl/43ada31674951bdbd62d8d560575a9f1 to your computer and use it in GitHub Desktop.
stitny/t/xmlsec-1.3.12$ gdb python3.10
GNU gdb (GDB; openSUSE Tumbleweed) 11.1
Copyright (C) 2021 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-suse-linux".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://bugs.opensuse.org/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from python3.10...
Downloading 0.01 MB separate debug info for /tmp/xmlsec-1.3.12/python3.10
Reading symbols from /home/matej/.cache/debuginfod_client/8c16a9a2899796cc25d65d0606fc8d546b4c97dd/debuginfo...
(gdb) run -mpytest -vv --ignore=_build.python39 --ignore=_build.python310 --ignore=_build.python38 tests/
Starting program: /usr/bin/python3.10 -mpytest -vv --ignore=_build.python39 --ignore=_build.python310 --ignore=_build.python38 tests/
[ plenty of information about downloading debugging information skipped ]
================================================================================= test session starts ==================================================================================
platform linux -- Python 3.10.4, pytest-7.1.1, pluggy-1.0.0 -- /usr/bin/python3.10
Downloading 0.09 MB separate debug info for /usr/lib64/python3.10/lib-dynload/_zoneinfo.cpython-310-x86_64-linux-gnu.so
Downloading 0.02 MB separate debug info for /usr/lib64/python3.10/lib-dynload/_statistics.cpython-310-x86_64-linux-gnu.so
cachedir: .pytest_cache
hypothesis profile 'default' -> database=DirectoryBasedExampleDatabase('/tmp/xmlsec-1.3.12/.hypothesis/examples')
rootdir: /tmp/xmlsec-1.3.12
plugins: hypothesis-6.39.4, forked-1.3.0, mock-3.6.1, cov-3.0.0, xdist-2.5.0, mypy-0.8.1, flaky-3.7.0, anyio-3.5.0
collecting ...
collecting 4 items
tests/test_xmlsec.py::TestModule::test_reinitialize_module
Program received signal SIGSEGV, Segmentation fault.
err_string_data_cmp (a=0x7ffff58ceb80, b=b@entry=0x7ffff5430b80 <xmlSecOpenSSLStrLib>) at crypto/err/err.c:171
Downloading 0.02 MB source file /usr/src/debug/openssl-1_1-1.1.1n-1.1.x86_64/crypto/err/err.c
171 if (a->error == b->error)
(gdb) t a a bt
Thread 1 (Thread 0x7ffff793b440 (LWP 11767) "python3.10"):
#0 err_string_data_cmp (a=0x7ffff58ceb80, b=b@entry=0x7ffff5430b80 <xmlSecOpenSSLStrLib>) at crypto/err/err.c:171
#1 0x00007ffff66799b5 in getrn (lh=lh@entry=0x555555737f30, data=data@entry=0x7ffff5430b80 <xmlSecOpenSSLStrLib>, rhash=rhash@entry=0x7fffffff7a80) at crypto/lhash/lhash.c:319
#2 0x00007ffff6679c06 in OPENSSL_LH_insert (lh=0x555555737f30, data=0x7ffff5430b80 <xmlSecOpenSSLStrLib>) at crypto/lhash/lhash.c:106
#3 0x00007ffff664de4b in lh_ERR_STRING_DATA_insert (d=0x7ffff5430b80 <xmlSecOpenSSLStrLib>, lh=<optimized out>) at include/openssl/err.h:218
#4 err_load_strings (str=0x7ffff5430b80 <xmlSecOpenSSLStrLib>) at crypto/err/err.c:340
#5 ERR_load_strings (str=0x7ffff5430b80 <xmlSecOpenSSLStrLib>, lib=185) at crypto/err/err.c:367
#6 ERR_load_strings (lib=lib@entry=185, str=str@entry=0x7ffff5430b80 <xmlSecOpenSSLStrLib>) at crypto/err/err.c:361
#7 0x00007ffff53ffda4 in xmlSecOpenSSLErrorsInit () at /usr/src/debug/xmlsec1-1.2.33-1.3.x86_64/src/openssl/crypto.c:482
#8 xmlSecOpenSSLInit () at /usr/src/debug/xmlsec1-1.2.33-1.3.x86_64/src/openssl/crypto.c:337
#9 0x00007ffff6f2f056 in PyXmlSec_Init () at /tmp/xmlsec-1.3.12/src/main.c:86
#10 0x00007ffff6f2f090 in PyXmlSec_PyInit (self=<optimized out>) at /tmp/xmlsec-1.3.12/src/main.c:106
#11 0x00007ffff7d7b5b1 in cfunction_vectorcall_NOARGS (func=<built-in method init of module object at remote 0x7ffff5b91ad0>, args=<optimized out>, nargsf=<optimized out>, kwnames=<optimized out>) at Objects/methodobject.c:489
#12 0x00007ffff7d75be1 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff5f7b9e8, callable=<built-in method init of module object at remote 0x7ffff5b91ad0>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#13 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff5f7b9e8, callable=<built-in method init of module object at remote 0x7ffff5b91ad0>) at ./Include/cpython/abstract.h:123
#14 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffff7c10, tstate=<optimized out>) at Python/ceval.c:5867
#15 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff5f7b870, for file /tmp/xmlsec-1.3.12/tests/test_xmlsec.py, line 14, in test_reinitialize_module (self=<TestModule(_testMethodName='test_reinitialize_module', _outcome=<_Outcome(expecting_failure=False, result=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', ...(truncated), throwflag=<optimized out>) at Python/ceval.c:4181
#16 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff5f7b870, for file /tmp/xmlsec-1.3.12/tests/test_xmlsec.py, line 14, in test_reinitialize_module (self=<TestModule(_testMethodName='test_reinitialize_module', _outcome=<_Outcome(expecting_failure=False, result=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', ...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#17 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=1, kwnames=<optimized out>) at Python/ceval.c:5065
#18 0x00007ffff7d834f4 in _PyFunction_Vectorcall (kwnames=<optimized out>, nargsf=1, stack=0x7ffff5c92230, func=<function at remote 0x7ffff54b3be0>) at Objects/call.c:342
#19 _PyObject_VectorcallTstate (kwnames=<optimized out>, nargsf=1, args=0x7ffff5c92230, callable=<function at remote 0x7ffff54b3be0>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#20 method_vectorcall (method=<optimized out>, args=0x7ffff5c92238, nargsf=<optimized out>, kwnames=<optimized out>) at Objects/classobject.c:53
#21 0x00007ffff7d71300 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff5c92238, callable=<method at remote 0x7ffff5511040>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#22 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff5c92238, callable=<method at remote 0x7ffff5511040>) at ./Include/cpython/abstract.h:123
#23 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffff7ef0, tstate=<optimized out>) at Python/ceval.c:5867
#24 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff5c920c0, for file /usr/lib64/python3.10/unittest/case.py, line 549, in _callTestMethod (self=<TestModule(_testMethodName='test_reinitialize_module', _outcome=<_Outcome(expecting_failure=False, result=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75--Type <RET> for more, q to quit, c to continue without paging--c
d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session'...(truncated), throwflag=<optimized out>) at Python/ceval.c:4213
#25 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff5c920c0, for file /usr/lib64/python3.10/unittest/case.py, line 549, in _callTestMethod (self=<TestModule(_testMethodName='test_reinitialize_module', _outcome=<_Outcome(expecting_failure=False, result=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session'...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#26 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=2, kwnames=<optimized out>) at Python/ceval.c:5065
#27 0x00007ffff7d71683 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x555555b43eb0, callable=<function at remote 0x7ffff642c0d0>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#28 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x555555b43eb0, callable=<function at remote 0x7ffff642c0d0>) at ./Include/cpython/abstract.h:123
#29 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffff8130, tstate=<optimized out>) at Python/ceval.c:5867
#30 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x555555b43cf0, for file /usr/lib64/python3.10/unittest/case.py, line 591, in run (self=<TestModule(_testMethodName='test_reinitialize_module', _outcome=<_Outcome(expecting_failure=False, result=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeNam...(truncated), throwflag=<optimized out>) at Python/ceval.c:4198
#31 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x555555b43cf0, for file /usr/lib64/python3.10/unittest/case.py, line 591, in run (self=<TestModule(_testMethodName='test_reinitialize_module', _outcome=<_Outcome(expecting_failure=False, result=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeNam...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#32 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=1, kwnames=<optimized out>) at Python/ceval.c:5065
#33 0x00007ffff7d834f4 in _PyFunction_Vectorcall (kwnames=<optimized out>, nargsf=1, stack=0x555555b43c90, func=<function at remote 0x7ffff642c280>) at Objects/call.c:342
#34 _PyObject_VectorcallTstate (kwnames=<optimized out>, nargsf=1, args=0x555555b43c90, callable=<function at remote 0x7ffff642c280>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#35 method_vectorcall (method=<optimized out>, args=0x555555b43c98, nargsf=<optimized out>, kwnames=<optimized out>) at Objects/classobject.c:53
#36 0x00007ffff7d72380 in _PyObject_VectorcallTstate (kwnames=('result',), nargsf=<optimized out>, args=<optimized out>, callable=<method at remote 0x7ffff5511440>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#37 PyObject_Vectorcall (kwnames=('result',), nargsf=<optimized out>, args=<optimized out>, callable=<method at remote 0x7ffff5511440>) at ./Include/cpython/abstract.h:123
#38 call_function (kwnames=('result',), oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffff8410, tstate=<optimized out>) at Python/ceval.c:5867
#39 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x555555b43ae0, for file /tmp/xmlsec-1.3.12/tests/base.py, line 57, in run (self=<TestModule(_testMethodName='test_reinitialize_module', _outcome=<_Outcome(expecting_failure=False, result=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __...(truncated), throwflag=<optimized out>) at Python/ceval.c:4231
#40 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x555555b43ae0, for file /tmp/xmlsec-1.3.12/tests/base.py, line 57, in run (self=<TestModule(_testMethodName='test_reinitialize_module', _outcome=<_Outcome(expecting_failure=False, result=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#41 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=1, kwnames=<optimized out>) at Python/ceval.c:5065
#42 0x00007ffff7d834f4 in _PyFunction_Vectorcall (kwnames=<optimized out>, nargsf=1, stack=0x7ffff786acf0, func=<function at remote 0x7ffff5b97760>) at Objects/call.c:342
#43 _PyObject_VectorcallTstate (kwnames=<optimized out>, nargsf=1, args=0x7ffff786acf0, callable=<function at remote 0x7ffff5b97760>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#44 method_vectorcall (method=<optimized out>, args=0x7ffff786acf8, nargsf=<optimized out>, kwnames=<optimized out>) at Objects/classobject.c:53
#45 0x00007ffff7d83abc in PyVectorcall_Call (callable=<method at remote 0x7ffff5511340>, tuple=<optimized out>, kwargs=<optimized out>) at Objects/call.c:267
#46 0x00007ffff7d73b8e in PyObject_Call (kwargs={'result': <TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are ordered from lower to higher, that is:\n\n ->>> higher ->>>\n\n Function < Clas...(truncated), args=(), callable=<method at remote 0x7ffff5511340>) at Objects/call.c:317
#47 do_call_core (kwdict={'result': <TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are ordered from lower to higher, that is:\n\n ->>> higher ->>>\n\n Function < Clas...(truncated), callargs=(), func=<method at remote 0x7ffff5511340>, trace_info=0x7fffffff8740, tstate=<optimized out>) at Python/ceval.c:5919
#48 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff551b490, for file /usr/lib64/python3.10/unittest/case.py, line 650, in __call__ (self=<TestModule(_testMethodName='test_reinitialize_module', _outcome=<_Outcome(expecting_failure=False, result=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_Sco...(truncated), throwflag=<optimized out>) at Python/ceval.c:4277
#49 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff551b490, for file /usr/lib64/python3.10/unittest/case.py, line 650, in __call__ (self=<TestModule(_testMethodName='test_reinitialize_module', _outcome=<_Outcome(expecting_failure=False, result=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_Sco...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#50 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=1, kwnames=<optimized out>) at Python/ceval.c:5065
#51 0x00007ffff7d79079 in _PyObject_FastCallDictTstate (tstate=0x555555577d50, callable=<function at remote 0x7ffff642c430>, args=<optimized out>, nargsf=<optimized out>, kwargs=<optimized out>) at Objects/call.c:153
#52 0x00007ffff7d81d38 in _PyObject_Call_Prepend (tstate=0x555555577d50, callable=<function at remote 0x7ffff642c430>, obj=<optimized out>, args=<optimized out>, kwargs={'result': <TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are ordered from lower to higher, that is:\n\n ->>> higher ->>>\n\n Function < Clas...(truncated)) at Objects/call.c:431
#53 0x00007ffff7e22b7e in slot_tp_call (self=<TestModule(_testMethodName='test_reinitialize_module', _outcome=<_Outcome(expecting_failure=False, result=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are...(truncated), args=(), kwds={'result': <TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are ordered from lower to higher, that is:\n\n ->>> higher ->>>\n\n Function < Clas...(truncated)) at Objects/typeobject.c:7489
#54 0x00007ffff7d79848 in _PyObject_MakeTpCall (tstate=0x555555577d50, callable=<TestModule(_testMethodName='test_reinitialize_module', _outcome=<_Outcome(expecting_failure=False, result=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are...(truncated), args=0x7ffff550e428, nargs=<optimized out>, keywords=<optimized out>) at Objects/call.c:215
#55 0x00007ffff7d76cca in _PyObject_VectorcallTstate (kwnames=('result',), nargsf=<optimized out>, args=<optimized out>, callable=<optimized out>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:112
#56 _PyObject_VectorcallTstate (kwnames=('result',), nargsf=<optimized out>, args=<optimized out>, callable=<optimized out>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:99
#57 PyObject_Vectorcall (kwnames=('result',), nargsf=<optimized out>, args=<optimized out>, callable=<optimized out>) at ./Include/cpython/abstract.h:123
#58 call_function (kwnames=('result',), oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffff8b00, tstate=<optimized out>) at Python/ceval.c:5867
#59 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff550e2b0, for file /usr/lib/python3.10/site-packages/_pytest/unittest.py, line 327, in runtest (self=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scop...(truncated), throwflag=<optimized out>) at Python/ceval.c:4231
#60 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff550e2b0, for file /usr/lib/python3.10/site-packages/_pytest/unittest.py, line 327, in runtest (self=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scop...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#61 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=1, kwnames=<optimized out>) at Python/ceval.c:5065
#62 0x00007ffff7d71683 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff5514ed8, callable=<function at remote 0x7ffff6c3b640>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#63 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff5514ed8, callable=<function at remote 0x7ffff6c3b640>) at ./Include/cpython/abstract.h:123
#64 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffff8d40, tstate=<optimized out>) at Python/ceval.c:5867
#65 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff5514d60, for file /usr/lib/python3.10/site-packages/_pytest/runner.py, line 166, in pytest_runtest_call (item=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n...(truncated), throwflag=<optimized out>) at Python/ceval.c:4198
#66 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff5514d60, for file /usr/lib/python3.10/site-packages/_pytest/runner.py, line 166, in pytest_runtest_call (item=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#67 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=1, kwnames=<optimized out>) at Python/ceval.c:5065
#68 0x00007ffff7d73b8e in PyObject_Call (kwargs=0x0, args=(<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are ordered from lower to higher, that is:\n\n ->>> higher ->>>\n\n Function < Class < Module...(truncated), callable=<function at remote 0x7ffff6ce93f0>) at Objects/call.c:317
#69 do_call_core (kwdict=0x0, callargs=(<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are ordered from lower to higher, that is:\n\n ->>> higher ->>>\n\n Function < Class < Module...(truncated), func=<function at remote 0x7ffff6ce93f0>, trace_info=0x7fffffff8f80, tstate=<optimized out>) at Python/ceval.c:5919
#70 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x555555b43870, for file /usr/lib/python3.10/site-packages/pluggy/_callers.py, line 39, in _multicall (hook_name='pytest_runtest_call', hook_impls=[<HookImpl(function=<function at remote 0x7ffff6ce93f0>, argnames=('item',), kwargnames=(), plugin=<module at remote 0x7ffff6cc8f40>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='runner', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c65390>, <HookImpl(function=<function at remote 0x7ffff6c88ee0>, argnames=('item',), kwargnames=(...), plugin=<module at remote 0x7ffff6c625c0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='skipping', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6c66d10>, <HookImpl(function=<function at remote 0x7ffff6ab7640>, argnames=('item',), kwargnames=(...), plugin=<module at remote ...(truncated), throwflag=<optimized out>) at Python/ceval.c:4277
#71 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x555555b43870, for file /usr/lib/python3.10/site-packages/pluggy/_callers.py, line 39, in _multicall (hook_name='pytest_runtest_call', hook_impls=[<HookImpl(function=<function at remote 0x7ffff6ce93f0>, argnames=('item',), kwargnames=(), plugin=<module at remote 0x7ffff6cc8f40>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='runner', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c65390>, <HookImpl(function=<function at remote 0x7ffff6c88ee0>, argnames=('item',), kwargnames=(...), plugin=<module at remote 0x7ffff6c625c0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='skipping', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6c66d10>, <HookImpl(function=<function at remote 0x7ffff6ab7640>, argnames=('item',), kwargnames=(...), plugin=<module at remote ...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#72 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=4, kwnames=<optimized out>) at Python/ceval.c:5065
#73 0x00007ffff7d75be1 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff550e0a8, callable=<function at remote 0x7ffff740cb80>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#74 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff550e0a8, callable=<function at remote 0x7ffff740cb80>) at ./Include/cpython/abstract.h:123
#75 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffff91c0, tstate=<optimized out>) at Python/ceval.c:5867
#76 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff550df10, for file /usr/lib/python3.10/site-packages/pluggy/_manager.py, line 80, in _hookexec (self=<PytestPluginManager(project_name='pytest', _name2plugin={'140737344961600': <...>, 'pytestconfig': <Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_fai...(truncated), throwflag=<optimized out>) at Python/ceval.c:4181
#77 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff550df10, for file /usr/lib/python3.10/site-packages/pluggy/_manager.py, line 80, in _hookexec (self=<PytestPluginManager(project_name='pytest', _name2plugin={'140737344961600': <...>, 'pytestconfig': <Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_fai...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#78 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=5, kwnames=<optimized out>) at Python/ceval.c:5065
#79 0x00007ffff7d834f4 in _PyFunction_Vectorcall (kwnames=<optimized out>, nargsf=5, stack=0x7ffff5514598, func=<function at remote 0x7ffff70ac9d0>) at Objects/call.c:342
#80 _PyObject_VectorcallTstate (kwnames=<optimized out>, nargsf=5, args=0x7ffff5514598, callable=<function at remote 0x7ffff70ac9d0>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#81 method_vectorcall (method=<optimized out>, args=0x7ffff55145a0, nargsf=<optimized out>, kwnames=<optimized out>) at Objects/classobject.c:53
#82 0x00007ffff7d75be1 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff55145a0, callable=<method at remote 0x7ffff6c54c40>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#83 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff55145a0, callable=<method at remote 0x7ffff6c54c40>) at ./Include/cpython/abstract.h:123
#84 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffff94a0, tstate=<optimized out>) at Python/ceval.c:5867
#85 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff5514400, for file /usr/lib/python3.10/site-packages/pluggy/_hooks.py, line 265, in __call__ (self=<_HookCaller(name='pytest_runtest_call', _wrappers=[<HookImpl(function=<function at remote 0x7ffff6c88ee0>, argnames=('item',), kwargnames=(), plugin=<module at remote 0x7ffff6c625c0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='skipping', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6c66d10>, <HookImpl(function=<function at remote 0x7ffff6ab7640>, argnames=('item',), kwargnames=(...), plugin=<module at remote 0x7ffff6af84f0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='hypothesispytest', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6b11c00>, <HookImpl(function=<method at remote 0x7ffff5fff300>, argnames=('item',), kwargnames=(...), plugin=<Ca...(truncated), throwflag=<optimized out>) at Python/ceval.c:4181
#86 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff5514400, for file /usr/lib/python3.10/site-packages/pluggy/_hooks.py, line 265, in __call__ (self=<_HookCaller(name='pytest_runtest_call', _wrappers=[<HookImpl(function=<function at remote 0x7ffff6c88ee0>, argnames=('item',), kwargnames=(), plugin=<module at remote 0x7ffff6c625c0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='skipping', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6c66d10>, <HookImpl(function=<function at remote 0x7ffff6ab7640>, argnames=('item',), kwargnames=(...), plugin=<module at remote 0x7ffff6af84f0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='hypothesispytest', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6b11c00>, <HookImpl(function=<method at remote 0x7ffff5fff300>, argnames=('item',), kwargnames=(...), plugin=<Ca...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#87 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=1, kwnames=<optimized out>) at Python/ceval.c:5065
#88 0x00007ffff7d79079 in _PyObject_FastCallDictTstate (tstate=0x555555577d50, callable=<function at remote 0x7ffff740de10>, args=<optimized out>, nargsf=<optimized out>, kwargs=<optimized out>) at Objects/call.c:153
#89 0x00007ffff7d81d38 in _PyObject_Call_Prepend (tstate=0x555555577d50, callable=<function at remote 0x7ffff740de10>, obj=<optimized out>, args=<optimized out>, kwargs={'item': <TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are ordered from lower to higher, that is:\n\n ->>> higher ->>>\n\n Function < Class ...(truncated)) at Objects/call.c:431
#90 0x00007ffff7e22b7e in slot_tp_call (self=<_HookCaller(name='pytest_runtest_call', _wrappers=[<HookImpl(function=<function at remote 0x7ffff6c88ee0>, argnames=('item',), kwargnames=(), plugin=<module at remote 0x7ffff6c625c0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='skipping', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6c66d10>, <HookImpl(function=<function at remote 0x7ffff6ab7640>, argnames=('item',), kwargnames=(...), plugin=<module at remote 0x7ffff6af84f0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='hypothesispytest', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6b11c00>, <HookImpl(function=<method at remote 0x7ffff5fff300>, argnames=('item',), kwargnames=(...), plugin=<CaptureManager(_method='fd', _global_capturing=<MultiCapture(in_=<FDCapture(targetfd=0, targetfd_invalid=None, ta...(truncated), args=(), kwds={'item': <TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are ordered from lower to higher, that is:\n\n ->>> higher ->>>\n\n Function < Class ...(truncated)) at Objects/typeobject.c:7489
#91 0x00007ffff7d83990 in _PyObject_Call (tstate=0x555555577d50, callable=<_HookCaller(name='pytest_runtest_call', _wrappers=[<HookImpl(function=<function at remote 0x7ffff6c88ee0>, argnames=('item',), kwargnames=(), plugin=<module at remote 0x7ffff6c625c0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='skipping', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6c66d10>, <HookImpl(function=<function at remote 0x7ffff6ab7640>, argnames=('item',), kwargnames=(...), plugin=<module at remote 0x7ffff6af84f0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='hypothesispytest', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6b11c00>, <HookImpl(function=<method at remote 0x7ffff5fff300>, argnames=('item',), kwargnames=(...), plugin=<CaptureManager(_method='fd', _global_capturing=<MultiCapture(in_=<FDCapture(targetfd=0, targetfd_invalid=None, ta...(truncated), args=(), kwargs=<optimized out>) at Objects/call.c:305
#92 0x00007ffff7d73b8e in PyObject_Call (kwargs={'item': <TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are ordered from lower to higher, that is:\n\n ->>> higher ->>>\n\n Function < Class ...(truncated), args=(), callable=<_HookCaller(name='pytest_runtest_call', _wrappers=[<HookImpl(function=<function at remote 0x7ffff6c88ee0>, argnames=('item',), kwargnames=(), plugin=<module at remote 0x7ffff6c625c0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='skipping', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6c66d10>, <HookImpl(function=<function at remote 0x7ffff6ab7640>, argnames=('item',), kwargnames=(...), plugin=<module at remote 0x7ffff6af84f0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='hypothesispytest', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6b11c00>, <HookImpl(function=<method at remote 0x7ffff5fff300>, argnames=('item',), kwargnames=(...), plugin=<CaptureManager(_method='fd', _global_capturing=<MultiCapture(in_=<FDCapture(targetfd=0, targetfd_invalid=None, ta...(truncated)) at Objects/call.c:317
#93 do_call_core (kwdict={'item': <TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are ordered from lower to higher, that is:\n\n ->>> higher ->>>\n\n Function < Class ...(truncated), callargs=(), func=<_HookCaller(name='pytest_runtest_call', _wrappers=[<HookImpl(function=<function at remote 0x7ffff6c88ee0>, argnames=('item',), kwargnames=(), plugin=<module at remote 0x7ffff6c625c0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='skipping', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6c66d10>, <HookImpl(function=<function at remote 0x7ffff6ab7640>, argnames=('item',), kwargnames=(...), plugin=<module at remote 0x7ffff6af84f0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='hypothesispytest', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6b11c00>, <HookImpl(function=<method at remote 0x7ffff5fff300>, argnames=('item',), kwargnames=(...), plugin=<CaptureManager(_method='fd', _global_capturing=<MultiCapture(in_=<FDCapture(targetfd=0, targetfd_invalid=None, ta...(truncated), trace_info=0x7fffffff9850, tstate=<optimized out>) at Python/ceval.c:5919
#94 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff5518c10, for file /usr/lib/python3.10/site-packages/_pytest/runner.py, line 259, in <lambda> (), throwflag=<optimized out>) at Python/ceval.c:4277
#95 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff5518c10, for file /usr/lib/python3.10/site-packages/_pytest/runner.py, line 259, in <lambda> (), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#96 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=0, kwnames=<optimized out>) at Python/ceval.c:5065
#97 0x00007ffff7d71300 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x555555a90320, callable=<function at remote 0x7ffff54b3e20>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#98 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x555555a90320, callable=<function at remote 0x7ffff54b3e20>) at ./Include/cpython/abstract.h:123
#99 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffff9a90, tstate=<optimized out>) at Python/ceval.c:5867
#100 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x555555a90160, for file /usr/lib/python3.10/site-packages/_pytest/runner.py, line 338, in from_call (cls=<type at remote 0x5555557ed0f0>, func=<function at remote 0x7ffff54b3e20>, when='call', reraise=(<type at remote 0x555555798c00>, <type at remote 0x7ffff7f890e0>), excinfo=None, start=<float at remote 0x7ffff5c5fd90>, precise_start=<float at remote 0x7ffff5c5f990>), throwflag=<optimized out>) at Python/ceval.c:4213
#101 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x555555a90160, for file /usr/lib/python3.10/site-packages/_pytest/runner.py, line 338, in from_call (cls=<type at remote 0x5555557ed0f0>, func=<function at remote 0x7ffff54b3e20>, when='call', reraise=(<type at remote 0x555555798c00>, <type at remote 0x7ffff7f890e0>), excinfo=None, start=<float at remote 0x7ffff5c5fd90>, precise_start=<float at remote 0x7ffff5c5f990>), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#102 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=2, kwnames=<optimized out>) at Python/ceval.c:5065
#103 0x00007ffff7d834f4 in _PyFunction_Vectorcall (kwnames=<optimized out>, nargsf=2, stack=0x7ffff5514778, func=<function at remote 0x7ffff6ce9a20>) at Objects/call.c:342
#104 _PyObject_VectorcallTstate (kwnames=<optimized out>, nargsf=2, args=0x7ffff5514778, callable=<function at remote 0x7ffff6ce9a20>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#105 method_vectorcall (method=<optimized out>, args=0x7ffff5514780, nargsf=<optimized out>, kwnames=<optimized out>) at Objects/classobject.c:53
#106 0x00007ffff7d72380 in _PyObject_VectorcallTstate (kwnames=('when', 'reraise'), nargsf=<optimized out>, args=<optimized out>, callable=<method at remote 0x7ffff5502840>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#107 PyObject_Vectorcall (kwnames=('when', 'reraise'), nargsf=<optimized out>, args=<optimized out>, callable=<method at remote 0x7ffff5502840>) at ./Include/cpython/abstract.h:123
#108 call_function (kwnames=('when', 'reraise'), oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffff9d70, tstate=<optimized out>) at Python/ceval.c:5867
#109 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff55145e0, for file /usr/lib/python3.10/site-packages/_pytest/runner.py, line 258, in call_runtest_hook (when='call', reraise=(<type at remote 0x555555798c00>, <type at remote 0x7ffff7f890e0>)), throwflag=<optimized out>) at Python/ceval.c:4231
#110 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff55145e0, for file /usr/lib/python3.10/site-packages/_pytest/runner.py, line 258, in call_runtest_hook (when='call', reraise=(<type at remote 0x555555798c00>, <type at remote 0x7ffff7f890e0>)), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#111 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=2, kwnames=<optimized out>) at Python/ceval.c:5065
#112 0x00007ffff7d73b8e in PyObject_Call (kwargs={}, args=(<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are ordered from lower to higher, that is:\n\n ->>> higher ->>>\n\n Function < Class < Module...(truncated), callable=<function at remote 0x7ffff6ce9750>) at Objects/call.c:317
#113 do_call_core (kwdict={}, callargs=(<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are ordered from lower to higher, that is:\n\n ->>> higher ->>>\n\n Function < Class < Module...(truncated), func=<function at remote 0x7ffff6ce9750>, trace_info=0x7fffffff9fb0, tstate=<optimized out>) at Python/ceval.c:5919
#114 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff5caa8f0, for file /usr/lib/python3.10/site-packages/flaky/flaky_pytest_plugin.py, line 138, in call_and_report (self=<FlakyPlugin(_stream=<_io.StringIO at remote 0x7ffff610acb0>, _flaky_success_report=True, _had_flaky_tests=False, flaky_report=True, force_flaky=False, max_runs=2, min_passes=1, runner=<module at remote 0x7ffff6cc8f40>, config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=No...(truncated), throwflag=<optimized out>) at Python/ceval.c:4277
#115 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff5caa8f0, for file /usr/lib/python3.10/site-packages/flaky/flaky_pytest_plugin.py, line 138, in call_and_report (self=<FlakyPlugin(_stream=<_io.StringIO at remote 0x7ffff610acb0>, _flaky_success_report=True, _had_flaky_tests=False, flaky_report=True, force_flaky=False, max_runs=2, min_passes=1, runner=<module at remote 0x7ffff6cc8f40>, config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=No...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#116 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=4, kwnames=<optimized out>) at Python/ceval.c:5065
#117 0x00007ffff7d834f4 in _PyFunction_Vectorcall (kwnames=<optimized out>, nargsf=4, stack=0x7ffff5caa8a0, func=<function at remote 0x7ffff610beb0>) at Objects/call.c:342
#118 _PyObject_VectorcallTstate (kwnames=<optimized out>, nargsf=4, args=0x7ffff5caa8a0, callable=<function at remote 0x7ffff610beb0>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#119 method_vectorcall (method=<optimized out>, args=0x7ffff5caa8a8, nargsf=<optimized out>, kwnames=<optimized out>) at Objects/classobject.c:53
#120 0x00007ffff7d71300 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff5caa8a8, callable=<method at remote 0x7ffff6009840>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#121 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff5caa8a8, callable=<method at remote 0x7ffff6009840>) at ./Include/cpython/abstract.h:123
#122 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffa290, tstate=<optimized out>) at Python/ceval.c:5867
#123 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff5caa700, for file /usr/lib/python3.10/site-packages/_pytest/runner.py, line 130, in runtestprotocol (item=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n ...(truncated), throwflag=<optimized out>) at Python/ceval.c:4213
#124 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff5caa700, for file /usr/lib/python3.10/site-packages/_pytest/runner.py, line 130, in runtestprotocol (item=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n ...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#125 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=1, kwnames=<optimized out>) at Python/ceval.c:5065
#126 0x00007ffff7d72380 in _PyObject_VectorcallTstate (kwnames=('nextitem',), nargsf=<optimized out>, args=<optimized out>, callable=<function at remote 0x7ffff6ce9240>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#127 PyObject_Vectorcall (kwnames=('nextitem',), nargsf=<optimized out>, args=<optimized out>, callable=<function at remote 0x7ffff6ce9240>) at ./Include/cpython/abstract.h:123
#128 call_function (kwnames=('nextitem',), oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffa4d0, tstate=<optimized out>) at Python/ceval.c:5867
#129 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff55183a0, for file /usr/lib/python3.10/site-packages/_pytest/runner.py, line 111, in pytest_runtest_protocol (item=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytes...(truncated), throwflag=<optimized out>) at Python/ceval.c:4231
#130 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff55183a0, for file /usr/lib/python3.10/site-packages/_pytest/runner.py, line 111, in pytest_runtest_protocol (item=<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytes...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#131 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=2, kwnames=<optimized out>) at Python/ceval.c:5065
#132 0x00007ffff7d75be1 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x555555b41938, callable=<function at remote 0x7ffff6ce91b0>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#133 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x555555b41938, callable=<function at remote 0x7ffff6ce91b0>) at ./Include/cpython/abstract.h:123
#134 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffa710, tstate=<optimized out>) at Python/ceval.c:5867
#135 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x555555b41770, for file /usr/lib/python3.10/site-packages/flaky/flaky_pytest_plugin.py, line 94, in pytest_runtest_protocol (self=<FlakyPlugin(_stream=<_io.StringIO at remote 0x7ffff610acb0>, _flaky_success_report=True, _had_flaky_tests=False, flaky_report=True, force_flaky=False, max_runs=2, min_passes=1, runner=<module at remote 0x7ffff6cc8f40>, config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitpr...(truncated), throwflag=<optimized out>) at Python/ceval.c:4181
#136 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x555555b41770, for file /usr/lib/python3.10/site-packages/flaky/flaky_pytest_plugin.py, line 94, in pytest_runtest_protocol (self=<FlakyPlugin(_stream=<_io.StringIO at remote 0x7ffff610acb0>, _flaky_success_report=True, _had_flaky_tests=False, flaky_report=True, force_flaky=False, max_runs=2, min_passes=1, runner=<module at remote 0x7ffff6cc8f40>, config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitpr...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#137 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=3, kwnames=<optimized out>) at Python/ceval.c:5065
#138 0x00007ffff7d835de in _PyFunction_Vectorcall (kwnames=<optimized out>, nargsf=<optimized out>, stack=0x7fffffffa8d0, func=<function at remote 0x7ffff610be20>) at Objects/call.c:342
#139 _PyObject_VectorcallTstate (kwnames=<optimized out>, nargsf=<optimized out>, args=0x7fffffffa8d0, callable=<function at remote 0x7ffff610be20>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#140 method_vectorcall (method=<optimized out>, args=<optimized out>, nargsf=<optimized out>, kwnames=<optimized out>) at Objects/classobject.c:83
#141 0x00007ffff7d73b8e in PyObject_Call (kwargs=0x0, args=(<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are ordered from lower to higher, that is:\n\n ->>> higher ->>>\n\n Function < Class < Module...(truncated), callable=<method at remote 0x7ffff60a2380>) at Objects/call.c:317
#142 do_call_core (kwdict=0x0, callargs=(<TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are ordered from lower to higher, that is:\n\n ->>> higher ->>>\n\n Function < Class < Module...(truncated), func=<method at remote 0x7ffff60a2380>, trace_info=0x7fffffffa9f0, tstate=<optimized out>) at Python/ceval.c:5919
#143 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x555555b41500, for file /usr/lib/python3.10/site-packages/pluggy/_callers.py, line 39, in _multicall (hook_name='pytest_runtest_protocol', hook_impls=[<HookImpl(function=<function at remote 0x7ffff6ce91b0>, argnames=('item', 'nextitem'), kwargnames=(), plugin=<module at remote 0x7ffff6cc8f40>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='runner', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c654b0>, <HookImpl(function=<method at remote 0x7ffff60a2380>, argnames=('item', 'nextitem'), kwargnames=(...), plugin=<module at remote 0x7ffff6ad6f20>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='flaky', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff61423e0>, <HookImpl(function=<function at remote 0x7ffff6ab7d90>, argnames=('item',), kwargnames=(...), pl...(truncated), throwflag=<optimized out>) at Python/ceval.c:4277
#144 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x555555b41500, for file /usr/lib/python3.10/site-packages/pluggy/_callers.py, line 39, in _multicall (hook_name='pytest_runtest_protocol', hook_impls=[<HookImpl(function=<function at remote 0x7ffff6ce91b0>, argnames=('item', 'nextitem'), kwargnames=(), plugin=<module at remote 0x7ffff6cc8f40>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='runner', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c654b0>, <HookImpl(function=<method at remote 0x7ffff60a2380>, argnames=('item', 'nextitem'), kwargnames=(...), plugin=<module at remote 0x7ffff6ad6f20>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='flaky', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff61423e0>, <HookImpl(function=<function at remote 0x7ffff6ab7d90>, argnames=('item',), kwargnames=(...), pl...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#145 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=4, kwnames=<optimized out>) at Python/ceval.c:5065
#146 0x00007ffff7d75be1 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff550c918, callable=<function at remote 0x7ffff740cb80>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#147 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff550c918, callable=<function at remote 0x7ffff740cb80>) at ./Include/cpython/abstract.h:123
#148 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffac30, tstate=<optimized out>) at Python/ceval.c:5867
#149 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff550c780, for file /usr/lib/python3.10/site-packages/pluggy/_manager.py, line 80, in _hookexec (self=<PytestPluginManager(project_name='pytest', _name2plugin={'140737344961600': <...>, 'pytestconfig': <Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_fai...(truncated), throwflag=<optimized out>) at Python/ceval.c:4181
#150 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff550c780, for file /usr/lib/python3.10/site-packages/pluggy/_manager.py, line 80, in _hookexec (self=<PytestPluginManager(project_name='pytest', _name2plugin={'140737344961600': <...>, 'pytestconfig': <Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_fai...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#151 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=5, kwnames=<optimized out>) at Python/ceval.c:5065
#152 0x00007ffff7d834f4 in _PyFunction_Vectorcall (kwnames=<optimized out>, nargsf=5, stack=0x555555a3d208, func=<function at remote 0x7ffff70ac9d0>) at Objects/call.c:342
#153 _PyObject_VectorcallTstate (kwnames=<optimized out>, nargsf=5, args=0x555555a3d208, callable=<function at remote 0x7ffff70ac9d0>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#154 method_vectorcall (method=<optimized out>, args=0x555555a3d210, nargsf=<optimized out>, kwnames=<optimized out>) at Objects/classobject.c:53
#155 0x00007ffff7d75be1 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x555555a3d210, callable=<method at remote 0x7ffff6c5d600>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#156 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x555555a3d210, callable=<method at remote 0x7ffff6c5d600>) at ./Include/cpython/abstract.h:123
#157 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffaf10, tstate=<optimized out>) at Python/ceval.c:5867
#158 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x555555a3d070, for file /usr/lib/python3.10/site-packages/pluggy/_hooks.py, line 265, in __call__ (self=<_HookCaller(name='pytest_runtest_protocol', _wrappers=[<HookImpl(function=<function at remote 0x7ffff6a87400>, argnames=('item',), kwargnames=(), plugin=<module at remote 0x7ffff6a8ed90>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': True, 'specname': None}, plugin_name='faulthandler', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=True, specname=None) at remote 0x7ffff6a93070>, <HookImpl(function=<function at remote 0x7ffff6c3b7f0>, argnames=('item',), kwargnames=(...), plugin=<module at remote 0x7ffff6c616c0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='unittest', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6c65f90>, <HookImpl(function=<function at remote 0x7ffff6cf5cf0>, argnames=('item',), kwargnames=(...), plugin=<mo...(truncated), throwflag=<optimized out>) at Python/ceval.c:4181
#159 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x555555a3d070, for file /usr/lib/python3.10/site-packages/pluggy/_hooks.py, line 265, in __call__ (self=<_HookCaller(name='pytest_runtest_protocol', _wrappers=[<HookImpl(function=<function at remote 0x7ffff6a87400>, argnames=('item',), kwargnames=(), plugin=<module at remote 0x7ffff6a8ed90>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': True, 'specname': None}, plugin_name='faulthandler', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=True, specname=None) at remote 0x7ffff6a93070>, <HookImpl(function=<function at remote 0x7ffff6c3b7f0>, argnames=('item',), kwargnames=(...), plugin=<module at remote 0x7ffff6c616c0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='unittest', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6c65f90>, <HookImpl(function=<function at remote 0x7ffff6cf5cf0>, argnames=('item',), kwargnames=(...), plugin=<mo...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#160 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=1, kwnames=<optimized out>) at Python/ceval.c:5065
#161 0x00007ffff7d79079 in _PyObject_FastCallDictTstate (tstate=0x555555577d50, callable=<function at remote 0x7ffff740de10>, args=<optimized out>, nargsf=<optimized out>, kwargs=<optimized out>) at Objects/call.c:153
#162 0x00007ffff7d81d38 in _PyObject_Call_Prepend (tstate=0x555555577d50, callable=<function at remote 0x7ffff740de10>, obj=<optimized out>, args=<optimized out>, kwargs={'item': <TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are ordered from lower to higher, that is:\n\n ->>> higher ->>>\n\n Function < Class ...(truncated)) at Objects/call.c:431
#163 0x00007ffff7e22b7e in slot_tp_call (self=<_HookCaller(name='pytest_runtest_protocol', _wrappers=[<HookImpl(function=<function at remote 0x7ffff6a87400>, argnames=('item',), kwargnames=(), plugin=<module at remote 0x7ffff6a8ed90>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': True, 'specname': None}, plugin_name='faulthandler', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=True, specname=None) at remote 0x7ffff6a93070>, <HookImpl(function=<function at remote 0x7ffff6c3b7f0>, argnames=('item',), kwargnames=(...), plugin=<module at remote 0x7ffff6c616c0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='unittest', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6c65f90>, <HookImpl(function=<function at remote 0x7ffff6cf5cf0>, argnames=('item',), kwargnames=(...), plugin=<module at remote 0x7ffff75cabb0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': True, 'trylast': ...(truncated), args=(), kwds={'item': <TestCaseFunction(keywords=<NodeKeywords at remote 0x7ffff5503840>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff54f21d0>, _report_sections=[], user_properties=[], _obj=<method at remote 0x7ffff5511040>, originalname='test_reinitialize_module', _fixtureinfo=<FuncFixtureInfo at remote 0x7ffff5ff4130>, fixturenames=['_unittest_setUpClass_fixture_TestModule', 'request'], funcargs={'_unittest_setUpClass_fixture_TestModule': None, 'request': <FixtureRequest(_pyfuncitem=<...>, fixturename=None, _scope=<Scope(_value_='function', _name_='Function', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.scope', __annotations__={'Function': '_ScopeName', 'Class': '_ScopeName', 'Module': '_ScopeName', 'Package': '_ScopeName', 'Session': '_ScopeName'}, __doc__='\n Represents one of the possible fixture scopes in pytest.\n\n Scopes are ordered from lower to higher, that is:\n\n ->>> higher ->>>\n\n Function < Class ...(truncated)) at Objects/typeobject.c:7489
#164 0x00007ffff7d79848 in _PyObject_MakeTpCall (tstate=0x555555577d50, callable=<_HookCaller(name='pytest_runtest_protocol', _wrappers=[<HookImpl(function=<function at remote 0x7ffff6a87400>, argnames=('item',), kwargnames=(), plugin=<module at remote 0x7ffff6a8ed90>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': True, 'specname': None}, plugin_name='faulthandler', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=True, specname=None) at remote 0x7ffff6a93070>, <HookImpl(function=<function at remote 0x7ffff6c3b7f0>, argnames=('item',), kwargnames=(...), plugin=<module at remote 0x7ffff6c616c0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': False, 'trylast': False, 'specname': None}, plugin_name='unittest', hookwrapper=True, optionalhook=False, tryfirst=False, trylast=False, specname=None) at remote 0x7ffff6c65f90>, <HookImpl(function=<function at remote 0x7ffff6cf5cf0>, argnames=('item',), kwargnames=(...), plugin=<module at remote 0x7ffff75cabb0>, opts={'hookwrapper': True, 'optionalhook': False, 'tryfirst': True, 'trylast': ...(truncated), args=0x555555a3aef0, nargs=<optimized out>, keywords=<optimized out>) at Objects/call.c:215
#165 0x00007ffff7d76cca in _PyObject_VectorcallTstate (kwnames=('item', 'nextitem'), nargsf=<optimized out>, args=<optimized out>, callable=<optimized out>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:112
#166 _PyObject_VectorcallTstate (kwnames=('item', 'nextitem'), nargsf=<optimized out>, args=<optimized out>, callable=<optimized out>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:99
#167 PyObject_Vectorcall (kwnames=('item', 'nextitem'), nargsf=<optimized out>, args=<optimized out>, callable=<optimized out>) at ./Include/cpython/abstract.h:123
#168 call_function (kwnames=('item', 'nextitem'), oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffb2d0, tstate=<optimized out>) at Python/ceval.c:5867
#169 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x555555a3ad60, for file /usr/lib/python3.10/site-packages/_pytest/main.py, line 347, in pytest_runtestloop (session=<Session(keywords=<NodeKeywords at remote 0x7ffff5ffcc80>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff6a930d0>, testsfailed=0, testscollected=166, shouldstop=False, shouldfail=False, trace=<TagTracerSub(root=<TagTracer(_tags2proc={}, _writer=None, indent=0) at remote 0x7ffff77bfb20>, tags=('collection',)) at remote 0x7ffff6a93130>, _initialpaths=frozenset({<PosixPath at remote 0x7ffff5b815a0>}), _bestrelpathcache=<_bestrelpath_cache at remote 0x7ffff5ff4f40>, exitstatus=<ExitCode(_value_=0, _name_='OK', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.config', __doc__='Encodes the valid exit codes by pytest.\n\n Currently users and plugins may supply other exit codes as well.\n\n .. versionadded:: 5.0\n ', _member_names_=['OK', 'TESTS_FAILED', 'INTERRUPTED', 'INTERNAL_ERROR', 'USAGE_ERROR', 'NO_T...(truncated), throwflag=<optimized out>) at Python/ceval.c:4231
#170 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x555555a3ad60, for file /usr/lib/python3.10/site-packages/_pytest/main.py, line 347, in pytest_runtestloop (session=<Session(keywords=<NodeKeywords at remote 0x7ffff5ffcc80>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff6a930d0>, testsfailed=0, testscollected=166, shouldstop=False, shouldfail=False, trace=<TagTracerSub(root=<TagTracer(_tags2proc={}, _writer=None, indent=0) at remote 0x7ffff77bfb20>, tags=('collection',)) at remote 0x7ffff6a93130>, _initialpaths=frozenset({<PosixPath at remote 0x7ffff5b815a0>}), _bestrelpathcache=<_bestrelpath_cache at remote 0x7ffff5ff4f40>, exitstatus=<ExitCode(_value_=0, _name_='OK', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.config', __doc__='Encodes the valid exit codes by pytest.\n\n Currently users and plugins may supply other exit codes as well.\n\n .. versionadded:: 5.0\n ', _member_names_=['OK', 'TESTS_FAILED', 'INTERRUPTED', 'INTERNAL_ERROR', 'USAGE_ERROR', 'NO_T...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#171 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=1, kwnames=<optimized out>) at Python/ceval.c:5065
#172 0x00007ffff7d73b8e in PyObject_Call (kwargs=0x0, args=(<Session(keywords=<NodeKeywords at remote 0x7ffff5ffcc80>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff6a930d0>, testsfailed=0, testscollected=166, shouldstop=False, shouldfail=False, trace=<TagTracerSub(root=<TagTracer(_tags2proc={}, _writer=None, indent=0) at remote 0x7ffff77bfb20>, tags=('collection',)) at remote 0x7ffff6a93130>, _initialpaths=frozenset({<PosixPath at remote 0x7ffff5b815a0>}), _bestrelpathcache=<_bestrelpath_cache at remote 0x7ffff5ff4f40>, exitstatus=<ExitCode(_value_=0, _name_='OK', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.config', __doc__='Encodes the valid exit codes by pytest.\n\n Currently users and plugins may supply other exit codes as well.\n\n .. versionadded:: 5.0\n ', _member_names_=['OK', 'TESTS_FAILED', 'INTERRUPTED', 'INTERNAL_ERROR', 'USAGE_ERROR', 'NO_TESTS_COLLECTED'], _member_map_={'OK': <...>, 'TESTS_FAILED': <ExitCode(_value_=1, _name_='TESTS_FAILED', __objclass__=<......(truncated), callable=<function at remote 0x7ffff6cea5f0>) at Objects/call.c:317
#173 do_call_core (kwdict=0x0, callargs=(<Session(keywords=<NodeKeywords at remote 0x7ffff5ffcc80>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff6a930d0>, testsfailed=0, testscollected=166, shouldstop=False, shouldfail=False, trace=<TagTracerSub(root=<TagTracer(_tags2proc={}, _writer=None, indent=0) at remote 0x7ffff77bfb20>, tags=('collection',)) at remote 0x7ffff6a93130>, _initialpaths=frozenset({<PosixPath at remote 0x7ffff5b815a0>}), _bestrelpathcache=<_bestrelpath_cache at remote 0x7ffff5ff4f40>, exitstatus=<ExitCode(_value_=0, _name_='OK', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.config', __doc__='Encodes the valid exit codes by pytest.\n\n Currently users and plugins may supply other exit codes as well.\n\n .. versionadded:: 5.0\n ', _member_names_=['OK', 'TESTS_FAILED', 'INTERRUPTED', 'INTERNAL_ERROR', 'USAGE_ERROR', 'NO_TESTS_COLLECTED'], _member_map_={'OK': <...>, 'TESTS_FAILED': <ExitCode(_value_=1, _name_='TESTS_FAILED', __objclass__=<......(truncated), func=<function at remote 0x7ffff6cea5f0>, trace_info=0x7fffffffb510, tstate=<optimized out>) at Python/ceval.c:5919
#174 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x555555b41290, for file /usr/lib/python3.10/site-packages/pluggy/_callers.py, line 39, in _multicall (hook_name='pytest_runtestloop', hook_impls=[<HookImpl(function=<function at remote 0x7ffff6cea5f0>, argnames=('session',), kwargnames=(), plugin=<module at remote 0x7ffff6e3f1f0>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='main', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c652d0>, <HookImpl(function=<method at remote 0x7ffff6049d80>, argnames=('session',), kwargnames=(...), plugin=<LoggingPlugin(_config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=...(truncated), throwflag=<optimized out>) at Python/ceval.c:4277
#175 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x555555b41290, for file /usr/lib/python3.10/site-packages/pluggy/_callers.py, line 39, in _multicall (hook_name='pytest_runtestloop', hook_impls=[<HookImpl(function=<function at remote 0x7ffff6cea5f0>, argnames=('session',), kwargnames=(), plugin=<module at remote 0x7ffff6e3f1f0>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='main', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c652d0>, <HookImpl(function=<method at remote 0x7ffff6049d80>, argnames=('session',), kwargnames=(...), plugin=<LoggingPlugin(_config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#176 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=4, kwnames=<optimized out>) at Python/ceval.c:5065
#177 0x00007ffff7d75be1 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff550c748, callable=<function at remote 0x7ffff740cb80>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#178 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff550c748, callable=<function at remote 0x7ffff740cb80>) at ./Include/cpython/abstract.h:123
#179 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffb750, tstate=<optimized out>) at Python/ceval.c:5867
#180 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff550c5b0, for file /usr/lib/python3.10/site-packages/pluggy/_manager.py, line 80, in _hookexec (self=<PytestPluginManager(project_name='pytest', _name2plugin={'140737344961600': <...>, 'pytestconfig': <Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_fai...(truncated), throwflag=<optimized out>) at Python/ceval.c:4181
#181 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff550c5b0, for file /usr/lib/python3.10/site-packages/pluggy/_manager.py, line 80, in _hookexec (self=<PytestPluginManager(project_name='pytest', _name2plugin={'140737344961600': <...>, 'pytestconfig': <Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_fai...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#182 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=5, kwnames=<optimized out>) at Python/ceval.c:5065
#183 0x00007ffff7d834f4 in _PyFunction_Vectorcall (kwnames=<optimized out>, nargsf=5, stack=0x7ffff55141d8, func=<function at remote 0x7ffff70ac9d0>) at Objects/call.c:342
#184 _PyObject_VectorcallTstate (kwnames=<optimized out>, nargsf=5, args=0x7ffff55141d8, callable=<function at remote 0x7ffff70ac9d0>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#185 method_vectorcall (method=<optimized out>, args=0x7ffff55141e0, nargsf=<optimized out>, kwnames=<optimized out>) at Objects/classobject.c:53
#186 0x00007ffff7d75be1 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff55141e0, callable=<method at remote 0x7ffff6c5dc80>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#187 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff55141e0, callable=<method at remote 0x7ffff6c5dc80>) at ./Include/cpython/abstract.h:123
#188 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffba30, tstate=<optimized out>) at Python/ceval.c:5867
#189 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff5514040, for file /usr/lib/python3.10/site-packages/pluggy/_hooks.py, line 265, in __call__ (self=<_HookCaller(name='pytest_runtestloop', _wrappers=[<HookImpl(function=<method at remote 0x7ffff6049d80>, argnames=('session',), kwargnames=(), plugin=<LoggingPlugin(_config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_...(truncated), throwflag=<optimized out>) at Python/ceval.c:4181
#190 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff5514040, for file /usr/lib/python3.10/site-packages/pluggy/_hooks.py, line 265, in __call__ (self=<_HookCaller(name='pytest_runtestloop', _wrappers=[<HookImpl(function=<method at remote 0x7ffff6049d80>, argnames=('session',), kwargnames=(), plugin=<LoggingPlugin(_config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#191 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=1, kwnames=<optimized out>) at Python/ceval.c:5065
#192 0x00007ffff7d79079 in _PyObject_FastCallDictTstate (tstate=0x555555577d50, callable=<function at remote 0x7ffff740de10>, args=<optimized out>, nargsf=<optimized out>, kwargs=<optimized out>) at Objects/call.c:153
#193 0x00007ffff7d81d38 in _PyObject_Call_Prepend (tstate=0x555555577d50, callable=<function at remote 0x7ffff740de10>, obj=<optimized out>, args=<optimized out>, kwargs={'session': <Session(keywords=<NodeKeywords at remote 0x7ffff5ffcc80>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff6a930d0>, testsfailed=0, testscollected=166, shouldstop=False, shouldfail=False, trace=<TagTracerSub(root=<TagTracer(_tags2proc={}, _writer=None, indent=0) at remote 0x7ffff77bfb20>, tags=('collection',)) at remote 0x7ffff6a93130>, _initialpaths=frozenset({<PosixPath at remote 0x7ffff5b815a0>}), _bestrelpathcache=<_bestrelpath_cache at remote 0x7ffff5ff4f40>, exitstatus=<ExitCode(_value_=0, _name_='OK', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.config', __doc__='Encodes the valid exit codes by pytest.\n\n Currently users and plugins may supply other exit codes as well.\n\n .. versionadded:: 5.0\n ', _member_names_=['OK', 'TESTS_FAILED', 'INTERRUPTED', 'INTERNAL_ERROR', 'USAGE_ERROR', 'NO_TESTS_COLLECTED'], _member_map_={'OK': <...>, 'TESTS_FAILED': <ExitCode(_value_=1, _name_='TESTS_FAILED', __objc...(truncated)) at Objects/call.c:431
#194 0x00007ffff7e22b7e in slot_tp_call (self=<_HookCaller(name='pytest_runtestloop', _wrappers=[<HookImpl(function=<method at remote 0x7ffff6049d80>, argnames=('session',), kwargnames=(), plugin=<LoggingPlugin(_config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_failed_no_failures='all', stepwise=False, s...(truncated), args=(), kwds={'session': <Session(keywords=<NodeKeywords at remote 0x7ffff5ffcc80>, own_markers=[], extra_keyword_matches=set(), stash=<Stash at remote 0x7ffff6a930d0>, testsfailed=0, testscollected=166, shouldstop=False, shouldfail=False, trace=<TagTracerSub(root=<TagTracer(_tags2proc={}, _writer=None, indent=0) at remote 0x7ffff77bfb20>, tags=('collection',)) at remote 0x7ffff6a93130>, _initialpaths=frozenset({<PosixPath at remote 0x7ffff5b815a0>}), _bestrelpathcache=<_bestrelpath_cache at remote 0x7ffff5ff4f40>, exitstatus=<ExitCode(_value_=0, _name_='OK', __objclass__=<EnumMeta(_generate_next_value_=<function at remote 0x7ffff75d72e0>, __module__='_pytest.config', __doc__='Encodes the valid exit codes by pytest.\n\n Currently users and plugins may supply other exit codes as well.\n\n .. versionadded:: 5.0\n ', _member_names_=['OK', 'TESTS_FAILED', 'INTERRUPTED', 'INTERNAL_ERROR', 'USAGE_ERROR', 'NO_TESTS_COLLECTED'], _member_map_={'OK': <...>, 'TESTS_FAILED': <ExitCode(_value_=1, _name_='TESTS_FAILED', __objc...(truncated)) at Objects/typeobject.c:7489
#195 0x00007ffff7d79848 in _PyObject_MakeTpCall (tstate=0x555555577d50, callable=<_HookCaller(name='pytest_runtestloop', _wrappers=[<HookImpl(function=<method at remote 0x7ffff6049d80>, argnames=('session',), kwargnames=(), plugin=<LoggingPlugin(_config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_failed_no_failures='all', stepwise=False, s...(truncated), args=0x7ffff600d838, nargs=<optimized out>, keywords=<optimized out>) at Objects/call.c:215
#196 0x00007ffff7d76cca in _PyObject_VectorcallTstate (kwnames=('session',), nargsf=<optimized out>, args=<optimized out>, callable=<optimized out>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:112
#197 _PyObject_VectorcallTstate (kwnames=('session',), nargsf=<optimized out>, args=<optimized out>, callable=<optimized out>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:99
#198 PyObject_Vectorcall (kwnames=('session',), nargsf=<optimized out>, args=<optimized out>, callable=<optimized out>) at ./Include/cpython/abstract.h:123
#199 call_function (kwnames=('session',), oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffbdf0, tstate=<optimized out>) at Python/ceval.c:5867
#200 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff600d6c0, for file /usr/lib/python3.10/site-packages/_pytest/main.py, line 322, in _main (config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_failed_no_failures='all', stepwise=False, stepwise_skip=False, hypothesis_show_statistics=False, hypothesis...(truncated), throwflag=<optimized out>) at Python/ceval.c:4231
#201 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff600d6c0, for file /usr/lib/python3.10/site-packages/_pytest/main.py, line 322, in _main (config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_failed_no_failures='all', stepwise=False, stepwise_skip=False, hypothesis_show_statistics=False, hypothesis...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#202 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=2, kwnames=<optimized out>) at Python/ceval.c:5065
#203 0x00007ffff7d71300 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x5555558024f0, callable=<function at remote 0x7ffff6cea4d0>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#204 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x5555558024f0, callable=<function at remote 0x7ffff6cea4d0>) at ./Include/cpython/abstract.h:123
#205 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffc030, tstate=<optimized out>) at Python/ceval.c:5867
#206 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x555555802350, for file /usr/lib/python3.10/site-packages/_pytest/main.py, line 268, in wrap_session (config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_failed_no_failures='all', stepwise=False, stepwise_skip=False, hypothesis_show_statistics=False, hyp...(truncated), throwflag=<optimized out>) at Python/ceval.c:4213
#207 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x555555802350, for file /usr/lib/python3.10/site-packages/_pytest/main.py, line 268, in wrap_session (config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_failed_no_failures='all', stepwise=False, stepwise_skip=False, hypothesis_show_statistics=False, hyp...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#208 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=2, kwnames=<optimized out>) at Python/ceval.c:5065
#209 0x00007ffff7d71300 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff6010b70, callable=<function at remote 0x7ffff6cea3b0>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#210 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff6010b70, callable=<function at remote 0x7ffff6cea3b0>) at ./Include/cpython/abstract.h:123
#211 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffc270, tstate=<optimized out>) at Python/ceval.c:5867
#212 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff6010a00, for file /usr/lib/python3.10/site-packages/_pytest/main.py, line 315, in pytest_cmdline_main (config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_failed_no_failures='all', stepwise=False, stepwise_skip=False, hypothesis_show_statistics=Fal...(truncated), throwflag=<optimized out>) at Python/ceval.c:4213
#213 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff6010a00, for file /usr/lib/python3.10/site-packages/_pytest/main.py, line 315, in pytest_cmdline_main (config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_failed_no_failures='all', stepwise=False, stepwise_skip=False, hypothesis_show_statistics=Fal...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#214 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=1, kwnames=<optimized out>) at Python/ceval.c:5065
#215 0x00007ffff7d73b8e in PyObject_Call (kwargs=0x0, args=(<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_failed_no_failures='all', stepwise=False, stepwise_skip=False, hypothesis_show_statistics=False, hypothesis_explain=False, forked=False, cov_source=[], cov_report={}, cov_config='.coveragerc', no_cov_on_fail=False, ...(truncated), callable=<function at remote 0x7ffff6cea440>) at Objects/call.c:317
#216 do_call_core (kwdict=0x0, callargs=(<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_failed_no_failures='all', stepwise=False, stepwise_skip=False, hypothesis_show_statistics=False, hypothesis_explain=False, forked=False, cov_source=[], cov_report={}, cov_config='.coveragerc', no_cov_on_fail=False, ...(truncated), func=<function at remote 0x7ffff6cea440>, trace_info=0x7fffffffc4b0, tstate=<optimized out>) at Python/ceval.c:5919
#217 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x555555a257a0, for file /usr/lib/python3.10/site-packages/pluggy/_callers.py, line 39, in _multicall (hook_name='pytest_cmdline_main', hook_impls=[<HookImpl(function=<function at remote 0x7ffff6cea440>, argnames=('config',), kwargnames=(), plugin=<module at remote 0x7ffff6e3f1f0>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='main', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c64d60>, <HookImpl(function=<function at remote 0x7ffff6c3a7a0>, argnames=('config',), kwargnames=(...), plugin=<module at remote 0x7ffff6c60d60>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='helpconfig', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c656f0>, <HookImpl(function=<function at remote 0x7ffff6cf7c70>, argnames=('config',), kwargnames=(...), plugin=<module at...(truncated), throwflag=<optimized out>) at Python/ceval.c:4277
#218 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x555555a257a0, for file /usr/lib/python3.10/site-packages/pluggy/_callers.py, line 39, in _multicall (hook_name='pytest_cmdline_main', hook_impls=[<HookImpl(function=<function at remote 0x7ffff6cea440>, argnames=('config',), kwargnames=(), plugin=<module at remote 0x7ffff6e3f1f0>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='main', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c64d60>, <HookImpl(function=<function at remote 0x7ffff6c3a7a0>, argnames=('config',), kwargnames=(...), plugin=<module at remote 0x7ffff6c60d60>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='helpconfig', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c656f0>, <HookImpl(function=<function at remote 0x7ffff6cf7c70>, argnames=('config',), kwargnames=(...), plugin=<module at...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#219 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=4, kwnames=<optimized out>) at Python/ceval.c:5065
#220 0x00007ffff7d75be1 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x5555559e4ee8, callable=<function at remote 0x7ffff740cb80>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#221 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x5555559e4ee8, callable=<function at remote 0x7ffff740cb80>) at ./Include/cpython/abstract.h:123
#222 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffc6f0, tstate=<optimized out>) at Python/ceval.c:5867
#223 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x5555559e4d50, for file /usr/lib/python3.10/site-packages/pluggy/_manager.py, line 80, in _hookexec (self=<PytestPluginManager(project_name='pytest', _name2plugin={'140737344961600': <...>, 'pytestconfig': <Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_fai...(truncated), throwflag=<optimized out>) at Python/ceval.c:4181
#224 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x5555559e4d50, for file /usr/lib/python3.10/site-packages/pluggy/_manager.py, line 80, in _hookexec (self=<PytestPluginManager(project_name='pytest', _name2plugin={'140737344961600': <...>, 'pytestconfig': <Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_fai...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#225 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=5, kwnames=<optimized out>) at Python/ceval.c:5065
#226 0x00007ffff7d834f4 in _PyFunction_Vectorcall (kwnames=<optimized out>, nargsf=5, stack=0x7ffff6b3ae68, func=<function at remote 0x7ffff70ac9d0>) at Objects/call.c:342
#227 _PyObject_VectorcallTstate (kwnames=<optimized out>, nargsf=5, args=0x7ffff6b3ae68, callable=<function at remote 0x7ffff70ac9d0>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#228 method_vectorcall (method=<optimized out>, args=0x7ffff6b3ae70, nargsf=<optimized out>, kwnames=<optimized out>) at Objects/classobject.c:53
#229 0x00007ffff7d75be1 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff6b3ae70, callable=<method at remote 0x7ffff6c54c00>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#230 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff6b3ae70, callable=<method at remote 0x7ffff6c54c00>) at ./Include/cpython/abstract.h:123
#231 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffc9d0, tstate=<optimized out>) at Python/ceval.c:5867
#232 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff6b3acd0, for file /usr/lib/python3.10/site-packages/pluggy/_hooks.py, line 265, in __call__ (self=<_HookCaller(name='pytest_cmdline_main', _wrappers=[], _nonwrappers=[<HookImpl(function=<function at remote 0x7ffff6cea440>, argnames=('config',), kwargnames=(), plugin=<module at remote 0x7ffff6e3f1f0>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='main', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c64d60>, <HookImpl(function=<function at remote 0x7ffff6c3a7a0>, argnames=('config',), kwargnames=(...), plugin=<module at remote 0x7ffff6c60d60>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='helpconfig', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c656f0>, <HookImpl(function=<function at remote 0x7ffff6cf7c70>, argnames=('config',), kwargname...(truncated), throwflag=<optimized out>) at Python/ceval.c:4181
#233 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff6b3acd0, for file /usr/lib/python3.10/site-packages/pluggy/_hooks.py, line 265, in __call__ (self=<_HookCaller(name='pytest_cmdline_main', _wrappers=[], _nonwrappers=[<HookImpl(function=<function at remote 0x7ffff6cea440>, argnames=('config',), kwargnames=(), plugin=<module at remote 0x7ffff6e3f1f0>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='main', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c64d60>, <HookImpl(function=<function at remote 0x7ffff6c3a7a0>, argnames=('config',), kwargnames=(...), plugin=<module at remote 0x7ffff6c60d60>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='helpconfig', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c656f0>, <HookImpl(function=<function at remote 0x7ffff6cf7c70>, argnames=('config',), kwargname...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#234 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=1, kwnames=<optimized out>) at Python/ceval.c:5065
#235 0x00007ffff7d79079 in _PyObject_FastCallDictTstate (tstate=0x555555577d50, callable=<function at remote 0x7ffff740de10>, args=<optimized out>, nargsf=<optimized out>, kwargs=<optimized out>) at Objects/call.c:153
#236 0x00007ffff7d81d38 in _PyObject_Call_Prepend (tstate=0x555555577d50, callable=<function at remote 0x7ffff740de10>, obj=<optimized out>, args=<optimized out>, kwargs={'config': <Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_failed_no_failures='all', stepwise=False, stepwise_skip=False, hypothesis_show_statistics=False, hypothesis_explain=False, forked=False, cov_source=[], cov_report={}, cov_config='.coveragerc', no_cov_on_fa...(truncated)) at Objects/call.c:431
#237 0x00007ffff7e22b7e in slot_tp_call (self=<_HookCaller(name='pytest_cmdline_main', _wrappers=[], _nonwrappers=[<HookImpl(function=<function at remote 0x7ffff6cea440>, argnames=('config',), kwargnames=(), plugin=<module at remote 0x7ffff6e3f1f0>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='main', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c64d60>, <HookImpl(function=<function at remote 0x7ffff6c3a7a0>, argnames=('config',), kwargnames=(...), plugin=<module at remote 0x7ffff6c60d60>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='helpconfig', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c656f0>, <HookImpl(function=<function at remote 0x7ffff6cf7c70>, argnames=('config',), kwargnames=(...), plugin=<module at remote 0x7ffff6d0c360>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': F...(truncated), args=(), kwds={'config': <Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_failed_no_failures='all', stepwise=False, stepwise_skip=False, hypothesis_show_statistics=False, hypothesis_explain=False, forked=False, cov_source=[], cov_report={}, cov_config='.coveragerc', no_cov_on_fa...(truncated)) at Objects/typeobject.c:7489
#238 0x00007ffff7d79848 in _PyObject_MakeTpCall (tstate=0x555555577d50, callable=<_HookCaller(name='pytest_cmdline_main', _wrappers=[], _nonwrappers=[<HookImpl(function=<function at remote 0x7ffff6cea440>, argnames=('config',), kwargnames=(), plugin=<module at remote 0x7ffff6e3f1f0>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='main', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c64d60>, <HookImpl(function=<function at remote 0x7ffff6c3a7a0>, argnames=('config',), kwargnames=(...), plugin=<module at remote 0x7ffff6c60d60>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': False, 'hookwrapper': False, 'specname': None}, plugin_name='helpconfig', tryfirst=False, trylast=False, optionalhook=False, hookwrapper=False, specname=None) at remote 0x7ffff6c656f0>, <HookImpl(function=<function at remote 0x7ffff6cf7c70>, argnames=('config',), kwargnames=(...), plugin=<module at remote 0x7ffff6d0c360>, opts={'tryfirst': False, 'trylast': False, 'optionalhook': F...(truncated), args=0x5555556fd6c0, nargs=<optimized out>, keywords=<optimized out>) at Objects/call.c:215
#239 0x00007ffff7d76cca in _PyObject_VectorcallTstate (kwnames=('config',), nargsf=<optimized out>, args=<optimized out>, callable=<optimized out>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:112
#240 _PyObject_VectorcallTstate (kwnames=('config',), nargsf=<optimized out>, args=<optimized out>, callable=<optimized out>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:99
#241 PyObject_Vectorcall (kwnames=('config',), nargsf=<optimized out>, args=<optimized out>, callable=<optimized out>) at ./Include/cpython/abstract.h:123
#242 call_function (kwnames=('config',), oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffcd90, tstate=<optimized out>) at Python/ceval.c:5867
#243 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x5555556fd500, for file /usr/lib/python3.10/site-packages/_pytest/config/__init__.py, line 164, in main (args=None, plugins=None, config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_failed_no_failures='all', stepwise=False, stepwise_skip=False, hypothesi...(truncated), throwflag=<optimized out>) at Python/ceval.c:4231
#244 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x5555556fd500, for file /usr/lib/python3.10/site-packages/_pytest/config/__init__.py, line 164, in main (args=None, plugins=None, config=<Config(option=<Namespace(keyword='', markexpr='', maxfail=0, continue_on_collection_errors=False, confcutdir=None, noconftest=False, keepduplicates=False, collect_in_virtualenv=False, importmode='prepend', basetemp=None, durations=None, durations_min=<float at remote 0x7ffff724c890>, version=0, plugins=[], traceconfig=False, showfixtures=False, show_fixtures_per_test=False, verbose=2, no_header=False, no_summary=False, reportchars='fE', disable_warnings=False, showlocals=False, tbstyle='auto', showcapture='all', fulltrace=False, color='auto', code_highlight='yes', capture='fd', runxfail=False, pastebin=None, assertmode='rewrite', xmlpath=None, junitprefix=None, doctestmodules=False, doctestreport='udiff', doctestglob=[], doctest_ignore_import_errors=False, doctest_continue_on_failure=False, last_failed_no_failures='all', stepwise=False, stepwise_skip=False, hypothesi...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#245 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=0, kwnames=<optimized out>) at Python/ceval.c:5065
#246 0x00007ffff7d71300 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff77889b8, callable=<function at remote 0x7ffff6e40550>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#247 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff77889b8, callable=<function at remote 0x7ffff6e40550>) at ./Include/cpython/abstract.h:123
#248 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffcfd0, tstate=<optimized out>) at Python/ceval.c:5867
#249 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff7788840, for file /usr/lib/python3.10/site-packages/_pytest/config/__init__.py, line 187, in console_main (), throwflag=<optimized out>) at Python/ceval.c:4213
#250 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff7788840, for file /usr/lib/python3.10/site-packages/_pytest/config/__init__.py, line 187, in console_main (), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#251 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=0, kwnames=<optimized out>) at Python/ceval.c:5065
#252 0x00007ffff7d75be1 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff77885b8, callable=<function at remote 0x7ffff6e405e0>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#253 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff77885b8, callable=<function at remote 0x7ffff6e405e0>) at ./Include/cpython/abstract.h:123
#254 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffd210, tstate=<optimized out>) at Python/ceval.c:5867
#255 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff7788440, for file /usr/lib/python3.10/site-packages/pytest/__main__.py, line 5, in <module> (), throwflag=<optimized out>) at Python/ceval.c:4181
#256 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff7788440, for file /usr/lib/python3.10/site-packages/pytest/__main__.py, line 5, in <module> (), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#257 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=0, kwnames=<optimized out>) at Python/ceval.c:5065
#258 0x00007ffff7de7c30 in PyEval_EvalCode (co=<code at remote 0x7ffff6c18500>, globals={'__name__': '__main__', '__doc__': 'The pytest entry point.', '__package__': 'pytest', '__loader__': <SourceFileLoader(name='pytest.__main__', path='/usr/lib/python3.10/site-packages/pytest/__main__.py') at remote 0x7ffff773fc70>, '__spec__': <ModuleSpec(name='pytest.__main__', loader=<...>, origin='/usr/lib/python3.10/site-packages/pytest/__main__.py', loader_state=None, submodule_search_locations=None, _set_fileattr=True, _cached='/usr/lib/python3.10/site-packages/pytest/__pycache__/__main__.cpython-310.pyc') at remote 0x7ffff6c20490>, '__annotations__': {}, '__builtins__': <module at remote 0x7ffff7878590>, '__file__': '/usr/lib/python3.10/site-packages/pytest/__main__.py', '__cached__': '/usr/lib/python3.10/site-packages/pytest/__pycache__/__main__.cpython-310.pyc', 'pytest': <module at remote 0x7ffff75c9c60>}, locals=<optimized out>) at Python/ceval.c:1134
#259 0x00007ffff7defdad in builtin_exec_impl (module=<optimized out>, locals={'__name__': '__main__', '__doc__': 'The pytest entry point.', '__package__': 'pytest', '__loader__': <SourceFileLoader(name='pytest.__main__', path='/usr/lib/python3.10/site-packages/pytest/__main__.py') at remote 0x7ffff773fc70>, '__spec__': <ModuleSpec(name='pytest.__main__', loader=<...>, origin='/usr/lib/python3.10/site-packages/pytest/__main__.py', loader_state=None, submodule_search_locations=None, _set_fileattr=True, _cached='/usr/lib/python3.10/site-packages/pytest/__pycache__/__main__.cpython-310.pyc') at remote 0x7ffff6c20490>, '__annotations__': {}, '__builtins__': <module at remote 0x7ffff7878590>, '__file__': '/usr/lib/python3.10/site-packages/pytest/__main__.py', '__cached__': '/usr/lib/python3.10/site-packages/pytest/__pycache__/__main__.cpython-310.pyc', 'pytest': <module at remote 0x7ffff75c9c60>}, globals={'__name__': '__main__', '__doc__': 'The pytest entry point.', '__package__': 'pytest', '__loader__': <SourceFileLoader(name='pytest.__main__', path='/usr/lib/python3.10/site-packages/pytest/__main__.py') at remote 0x7ffff773fc70>, '__spec__': <ModuleSpec(name='pytest.__main__', loader=<...>, origin='/usr/lib/python3.10/site-packages/pytest/__main__.py', loader_state=None, submodule_search_locations=None, _set_fileattr=True, _cached='/usr/lib/python3.10/site-packages/pytest/__pycache__/__main__.cpython-310.pyc') at remote 0x7ffff6c20490>, '__annotations__': {}, '__builtins__': <module at remote 0x7ffff7878590>, '__file__': '/usr/lib/python3.10/site-packages/pytest/__main__.py', '__cached__': '/usr/lib/python3.10/site-packages/pytest/__pycache__/__main__.cpython-310.pyc', 'pytest': <module at remote 0x7ffff75c9c60>}, source=<code at remote 0x7ffff6c18500>) at Python/bltinmodule.c:1056
#260 builtin_exec (module=<optimized out>, args=args@entry=0x5555555fd648, nargs=<optimized out>) at Python/clinic/bltinmodule.c.h:371
#261 0x00007ffff7d7cb3c in cfunction_vectorcall_FASTCALL (func=<built-in method exec of module object at remote 0x7ffff7878590>, args=0x5555555fd648, nargsf=<optimized out>, kwnames=<optimized out>) at Objects/methodobject.c:430
#262 0x00007ffff7d71300 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x5555555fd648, callable=<built-in method exec of module object at remote 0x7ffff7878590>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#263 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x5555555fd648, callable=<built-in method exec of module object at remote 0x7ffff7878590>) at ./Include/cpython/abstract.h:123
#264 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffd570, tstate=<optimized out>) at Python/ceval.c:5867
#265 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x5555555fd490, for file /usr/lib64/python3.10/runpy.py, line 86, in _run_code (code=<code at remote 0x7ffff6c18500>, run_globals={'__name__': '__main__', '__doc__': 'The pytest entry point.', '__package__': 'pytest', '__loader__': <SourceFileLoader(name='pytest.__main__', path='/usr/lib/python3.10/site-packages/pytest/__main__.py') at remote 0x7ffff773fc70>, '__spec__': <ModuleSpec(name='pytest.__main__', loader=<...>, origin='/usr/lib/python3.10/site-packages/pytest/__main__.py', loader_state=None, submodule_search_locations=None, _set_fileattr=True, _cached='/usr/lib/python3.10/site-packages/pytest/__pycache__/__main__.cpython-310.pyc') at remote 0x7ffff6c20490>, '__annotations__': {}, '__builtins__': <module at remote 0x7ffff7878590>, '__file__': '/usr/lib/python3.10/site-packages/pytest/__main__.py', '__cached__': '/usr/lib/python3.10/site-packages/pytest/__pycache__/__main__.cpython-310.pyc', 'pytest': <module at remote 0x7ffff75c9c60>}, init_globals=None, mod_name='__main__', mod_spec=<...>, pkg_...(truncated), throwflag=<optimized out>) at Python/ceval.c:4213
#266 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x5555555fd490, for file /usr/lib64/python3.10/runpy.py, line 86, in _run_code (code=<code at remote 0x7ffff6c18500>, run_globals={'__name__': '__main__', '__doc__': 'The pytest entry point.', '__package__': 'pytest', '__loader__': <SourceFileLoader(name='pytest.__main__', path='/usr/lib/python3.10/site-packages/pytest/__main__.py') at remote 0x7ffff773fc70>, '__spec__': <ModuleSpec(name='pytest.__main__', loader=<...>, origin='/usr/lib/python3.10/site-packages/pytest/__main__.py', loader_state=None, submodule_search_locations=None, _set_fileattr=True, _cached='/usr/lib/python3.10/site-packages/pytest/__pycache__/__main__.cpython-310.pyc') at remote 0x7ffff6c20490>, '__annotations__': {}, '__builtins__': <module at remote 0x7ffff7878590>, '__file__': '/usr/lib/python3.10/site-packages/pytest/__main__.py', '__cached__': '/usr/lib/python3.10/site-packages/pytest/__pycache__/__main__.cpython-310.pyc', 'pytest': <module at remote 0x7ffff75c9c60>}, init_globals=None, mod_name='__main__', mod_spec=<...>, pkg_...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#267 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=5, kwnames=<optimized out>) at Python/ceval.c:5065
#268 0x00007ffff7d71300 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff780fde0, callable=<function at remote 0x7ffff7772290>, tstate=0x555555577d50) at ./Include/cpython/abstract.h:114
#269 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=0x7ffff780fde0, callable=<function at remote 0x7ffff7772290>) at ./Include/cpython/abstract.h:123
#270 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, trace_info=0x7fffffffd7b0, tstate=<optimized out>) at Python/ceval.c:5867
#271 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=Frame 0x7ffff780fc40, for file /usr/lib64/python3.10/runpy.py, line 196, in _run_module_as_main (mod_name='pytest.__main__', alter_argv=True, mod_spec=<ModuleSpec(name='pytest.__main__', loader=<SourceFileLoader(name='pytest.__main__', path='/usr/lib/python3.10/site-packages/pytest/__main__.py') at remote 0x7ffff773fc70>, origin='/usr/lib/python3.10/site-packages/pytest/__main__.py', loader_state=None, submodule_search_locations=None, _set_fileattr=True, _cached='/usr/lib/python3.10/site-packages/pytest/__pycache__/__main__.cpython-310.pyc') at remote 0x7ffff6c20490>, code=<code at remote 0x7ffff6c18500>, main_globals={'__name__': '__main__', '__doc__': 'The pytest entry point.', '__package__': 'pytest', '__loader__': <...>, '__spec__': <...>, '__annotations__': {}, '__builtins__': <module at remote 0x7ffff7878590>, '__file__': '/usr/lib/python3.10/site-packages/pytest/__main__.py', '__cached__': '/usr/lib/python3.10/site-packages/pytest/__pycache__/__main__.cpython-310.pyc', 'pytest': <module at remote 0x7ff...(truncated), throwflag=<optimized out>) at Python/ceval.c:4213
#272 0x00007ffff7d7011b in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7ffff780fc40, for file /usr/lib64/python3.10/runpy.py, line 196, in _run_module_as_main (mod_name='pytest.__main__', alter_argv=True, mod_spec=<ModuleSpec(name='pytest.__main__', loader=<SourceFileLoader(name='pytest.__main__', path='/usr/lib/python3.10/site-packages/pytest/__main__.py') at remote 0x7ffff773fc70>, origin='/usr/lib/python3.10/site-packages/pytest/__main__.py', loader_state=None, submodule_search_locations=None, _set_fileattr=True, _cached='/usr/lib/python3.10/site-packages/pytest/__pycache__/__main__.cpython-310.pyc') at remote 0x7ffff6c20490>, code=<code at remote 0x7ffff6c18500>, main_globals={'__name__': '__main__', '__doc__': 'The pytest entry point.', '__package__': 'pytest', '__loader__': <...>, '__spec__': <...>, '__annotations__': {}, '__builtins__': <module at remote 0x7ffff7878590>, '__file__': '/usr/lib/python3.10/site-packages/pytest/__main__.py', '__cached__': '/usr/lib/python3.10/site-packages/pytest/__pycache__/__main__.cpython-310.pyc', 'pytest': <module at remote 0x7ff...(truncated), tstate=0x555555577d50) at ./Include/internal/pycore_ceval.h:46
#273 _PyEval_Vector (tstate=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=2, kwnames=<optimized out>) at Python/ceval.c:5065
#274 0x00007ffff7e0ece9 in pymain_run_module (modname=<optimized out>, set_argv0=<optimized out>) at Modules/main.c:293
#275 0x00007ffff7e0612c in pymain_run_python (exitcode=0x7fffffffd9a0) at Modules/main.c:581
#276 Py_RunMain () at Modules/main.c:666
#277 0x00007ffff7dd9799 in Py_BytesMain (argc=<optimized out>, argv=<optimized out>) at Modules/main.c:720
#278 0x00007ffff7a64630 in __libc_start_call_main (main=main@entry=0x555555555140 <main>, argc=argc@entry=7, argv=argv@entry=0x7fffffffdbd8) at ../sysdeps/nptl/libc_start_call_main.h:58
#279 0x00007ffff7a646f0 in __libc_start_main_impl (main=0x555555555140 <main>, argc=7, argv=0x7fffffffdbd8, init=<optimized out>, fini=<optimized out>, rtld_fini=<optimized out>, stack_end=0x7fffffffdbc8) at ../csu/libc-start.c:392
#280 0x0000555555555075 in _start () at ../sysdeps/x86_64/start.S:115
(gdb)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment