Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8.3.0: pytest is failing #13665

Open
kloczek opened this issue May 1, 2022 · 13 comments
Open

8.3.0: pytest is failing #13665

kloczek opened this issue May 1, 2022 · 13 comments
Labels

Comments

@kloczek
Copy link
Contributor

kloczek commented May 1, 2022

I'm trying to package your module as an rpm package. So I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account.

  • python3 -sBm build -w --no-isolation
  • because I'm calling build with --no-isolation I'm using during all processes only locally installed modules
  • install .whl file in </install/prefix>
  • run pytest with PYTHONPATH pointing to sitearch and sitelib inside </install/prefix>

Here is pytest output:

+ PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.3.0-2.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.3.0-2.fc35.x86_64/usr/lib/python3.8/site-packages
+ /usr/bin/pytest -ra
=========================================================================== test session starts ============================================================================
platform linux -- Python 3.8.13, pytest-7.1.2, pluggy-1.0.0
rootdir: /home/tkloczko/rpmbuild/BUILD/ipython-8.3.0, configfile: pytest.ini
plugins: asyncio-0.18.2
asyncio: mode=strict
collected 0 items / 1 error

================================================================================== ERRORS ==================================================================================
______________________________________________________________________ ERROR collecting test session _______________________________________________________________________
/usr/lib/python3.8/site-packages/_pytest/config/__init__.py:607: in _importconftest
    mod = import_path(conftestpath, mode=importmode, root=rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.conftest', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.3.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/conftest.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/IPython/conftest.py'))
========================================================================= short test summary info ==========================================================================
ERROR  - _pytest.pathlib.ImportPathMismatchError: ('IPython.conftest', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.3.0-2.fc35.x86_64/usr/lib/python3.8/site-packa...
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 1 error during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
============================================================================= 1 error in 0.39s =============================================================================
@MrMino
Copy link
Member

MrMino commented May 6, 2022

The issue seems to be that pytest cannot find the conftest.py file. For that to happen you need to run it from the root of the source tree.

@MrMino MrMino added the testing label May 6, 2022
@kloczek
Copy link
Contributor Author

kloczek commented May 6, 2022

I'm running pytest from source root tree ditectory.

@MrMino
Copy link
Member

MrMino commented May 6, 2022

Scratch that. The docstring for this error states the following:

Raised on import_path() if there is a mismatch of __file__'s.

This can happen when `import_path` is called multiple times with different filenames that has
the same basename but reside in packages
(for example "/tests1/test_foo.py" and "/tests2/test_foo.py").

That error stems from trying to import IPython.conftest "by path", when it is already imported from a different file.

Looks like it is somehow importing IPython.conftest, then moving the files, then running pytest (either for the first time or again), which imports IPython.conftest again from a different path.

@kloczek
Copy link
Contributor Author

kloczek commented May 23, 2022

How can I try trace those imports? 🤔

@MrMino
Copy link
Member

MrMino commented May 24, 2022

Difficult to tell without seeing your code. I'd try pdb.set_trace() in the relevant build hook and stepping through the code to find where you are moving the files. Or maybe just try to run pytest in a separate process?

@kloczek
Copy link
Contributor Author

kloczek commented Jun 2, 2022

Just tested 8.4.0 and pytest still is failing on collecting units.
Any progress/suggestions/hints/whatever? 🤔

@MrMino
Copy link
Member

MrMino commented Jun 2, 2022

Does the build system you are using work on other packages? Or is it IPython-specific thing you've built for it?

@kloczek
Copy link
Contributor Author

kloczek commented Jun 3, 2022

What you mean "work on other packages"? Please be a bit more specific 😋
That system is created only to build ipython module in which are installed only packages listed in build dependencies.

@MrMino
Copy link
Member

MrMino commented Jun 10, 2022

You haven't provided the code of that system, so I cannot assume any specificity to IPython.

My question was aimed at figuring out whether the issue is specific to IPython, or rather a general problem with the system you've created.

In the latter case, I don't see any way of helping you with it until you "show the code". The domain of possible build systems for IPython is large enough that navigating towards any concrete answer is bound to be a time waste for both of us.

@kloczek
Copy link
Contributor Author

kloczek commented Jun 11, 2022

You haven't provided the code of that system, so I cannot assume any specificity to IPython.

Yuo mean minimal set of modules installed in build env?
Here it is:

Package                       Version
----------------------------- -----------------
alabaster                     0.7.12
appdirs                       1.4.4
asttokens                     2.0.5
attrs                         21.4.0
Babel                         2.10.1
backcall                      0.2.0
Brlapi                        0.8.3
build                         0.8.0
charset-normalizer            2.0.12
codespell                     2.1.0
cycler                        0.11.0
Cython                        0.29.30
decorator                     5.1.1
distro                        1.7.0
docutils                      0.17.1
executing                     0.8.3
extras                        1.0.0
fastjsonschema                2.15.3
fixtures                      4.0.0
fonttools                     4.33.3
gpg                           1.17.1-unknown
idna                          3.3
imagesize                     1.3.0
importlib-metadata            4.11.3
importlib-resources           5.7.1
iniconfig                     1.1.1
jedi                          0.18.1
Jinja2                        3.1.1
jsonschema                    4.5.1
jupyter-core                  4.10.0
kiwisolver                    1.4.2
libcomps                      0.1.18
louis                         3.21.0
lxml                          4.9.0
MarkupSafe                    2.1.1
matplotlib                    3.5.1
nbformat                      5.4.0
numpy                         1.22.4
olefile                       0.46
packaging                     21.3
parso                         0.8.3
pbr                           5.8.1
pep517                        0.12.0
pexpect                       4.8.0
pickleshare                   0.7.5
Pillow                        9.1.1
pip                           22.0.4
pluggy                        1.0.0
prompt-toolkit                3.0.29
ptyprocess                    0.7.0
pure-eval                     0.2.2
py                            1.11.0
Pygments                      2.12.0
PyGObject                     3.42.1
pyparsing                     3.0.9
pyrsistent                    0.18.1
pytest                        7.1.2
pytest-asyncio                0.18.2
python-dateutil               2.8.2
pytz                          2022.1
requests                      2.28.0
rpm                           4.17.0
scour                         0.38.2
setuptools                    62.2.0
six                           1.16.0
snowballstemmer               2.2.0
Sphinx                        5.0.1
sphinx-rtd-theme              1.0.0
sphinxcontrib-applehelp       1.0.2.dev20220410
sphinxcontrib-devhelp         1.0.2.dev20220410
sphinxcontrib-htmlhelp        2.0.0
sphinxcontrib-jsmath          1.0.1.dev20220410
sphinxcontrib-qthelp          1.0.3.dev20220410
sphinxcontrib-serializinghtml 1.1.5
stack-data                    0.2.0
testpath                      0.6.0
testtools                     2.5.0
tomli                         2.0.1
tornado                       6.1
traitlets                     5.2.2
urllib3                       1.26.9
wcwidth                       0.2.5
wheel                         0.37.1
zipp                          3.8.0

My question was aimed at figuring out whether the issue is specific to IPython, or rather a general problem with the system you've created.

To be hoonest I don;t think that this issue has anything to do with my stsrem
Reason to say that is that pytest stands clearly that it is about importing issue (probably circular dependencies or so).
Really please instead assuming anytjhing please try to reproduce this issue instead assuming anythimng.
In this case issue is about "test as installed" methodology which is widely used during package all python modules by majority of the Linux distributions.

@kloczek
Copy link
Contributor Author

kloczek commented Jun 11, 2022

Just reteded with --import-mode=importlib and with that option it is clearly viosible that issue is somewhere arout "import" lines

+ PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages
+ /usr/bin/pytest -ra --import-mode=importlib
==================================================================== test session starts =====================================================================
platform linux -- Python 3.8.13, pytest-7.1.2, pluggy-1.0.0
rootdir: /home/tkloczko/rpmbuild/BUILD/ipython-8.4.0, configfile: pytest.ini
plugins: asyncio-0.18.2
asyncio: mode=strict
collected 867 items / 213 errors

=========================================================================== ERRORS ===========================================================================
____________________________________________________________ ERROR collecting IPython/display.py _____________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.display', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/display.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/display.py'))
_____________________________________________________________ ERROR collecting IPython/paths.py ______________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.paths', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/paths.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/paths.py'))
___________________________________________________________ ERROR collecting IPython/core/alias.py ___________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.alias', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/alias.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/alias.py'))
________________________________________________________ ERROR collecting IPython/core/application.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.application', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/application.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/application.py'))
_______________________________________________________ ERROR collecting IPython/core/async_helpers.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.async_helpers', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/async_helpers.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/async_helpers.py'))
_________________________________________________________ ERROR collecting IPython/core/autocall.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.autocall', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/autocall.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/autocall.py'))
_______________________________________________________ ERROR collecting IPython/core/builtin_trap.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.builtin_trap', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/builtin_trap.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/builtin_trap.py'))
________________________________________________________ ERROR collecting IPython/core/compilerop.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.compilerop', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/compilerop.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/compilerop.py'))
_________________________________________________________ ERROR collecting IPython/core/completer.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.completer', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/completer.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/completer.py'))
_______________________________________________________ ERROR collecting IPython/core/completerlib.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.completerlib', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/completerlib.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/completerlib.py'))
_______________________________________________________ ERROR collecting IPython/core/crashhandler.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.crashhandler', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/crashhandler.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/crashhandler.py'))
_________________________________________________________ ERROR collecting IPython/core/debugger.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.debugger', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/debugger.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/debugger.py'))
__________________________________________________________ ERROR collecting IPython/core/display.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.display', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/display.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/display.py'))
_____________________________________________________ ERROR collecting IPython/core/display_functions.py _____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.display_functions', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/display_functions.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/display_functions.py'))
_______________________________________________________ ERROR collecting IPython/core/display_trap.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.display_trap', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/display_trap.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/display_trap.py'))
________________________________________________________ ERROR collecting IPython/core/displayhook.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.displayhook', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/displayhook.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/displayhook.py'))
________________________________________________________ ERROR collecting IPython/core/displaypub.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.displaypub', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/displaypub.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/displaypub.py'))
___________________________________________________________ ERROR collecting IPython/core/error.py ___________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.error', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/error.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/error.py'))
__________________________________________________________ ERROR collecting IPython/core/events.py ___________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.events', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/events.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/events.py'))
_________________________________________________________ ERROR collecting IPython/core/excolors.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.excolors', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/excolors.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/excolors.py'))
________________________________________________________ ERROR collecting IPython/core/extensions.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.extensions', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/extensions.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/extensions.py'))
________________________________________________________ ERROR collecting IPython/core/formatters.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.formatters', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/formatters.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/formatters.py'))
________________________________________________________ ERROR collecting IPython/core/getipython.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.getipython', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/getipython.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/getipython.py'))
__________________________________________________________ ERROR collecting IPython/core/history.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.history', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/history.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/history.py'))
________________________________________________________ ERROR collecting IPython/core/historyapp.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.historyapp', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/historyapp.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/historyapp.py'))
___________________________________________________________ ERROR collecting IPython/core/hooks.py ___________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.hooks', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/hooks.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/hooks.py'))
_____________________________________________________ ERROR collecting IPython/core/inputtransformer.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.inputtransformer', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/inputtransformer.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/inputtransformer.py'))
_____________________________________________________ ERROR collecting IPython/core/inputtransformer2.py _____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.inputtransformer2', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/inputtransformer2.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/inputtransformer2.py'))
_____________________________________________________ ERROR collecting IPython/core/interactiveshell.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.interactiveshell', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/interactiveshell.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/interactiveshell.py'))
_______________________________________________________ ERROR collecting IPython/core/latex_symbols.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.latex_symbols', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/latex_symbols.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/latex_symbols.py'))
__________________________________________________________ ERROR collecting IPython/core/logger.py ___________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.logger', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/logger.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/logger.py'))
___________________________________________________________ ERROR collecting IPython/core/macro.py ___________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.macro', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/macro.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/macro.py'))
___________________________________________________________ ERROR collecting IPython/core/magic.py ___________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magic', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/magic.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/magic.py'))
______________________________________________________ ERROR collecting IPython/core/magic_arguments.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magic_arguments', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/magic_arguments.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/magic_arguments.py'))
_________________________________________________________ ERROR collecting IPython/core/oinspect.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.oinspect', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/oinspect.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/oinspect.py'))
___________________________________________________________ ERROR collecting IPython/core/page.py ____________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.page', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/page.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/page.py'))
__________________________________________________________ ERROR collecting IPython/core/payload.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.payload', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/payload.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/payload.py'))
________________________________________________________ ERROR collecting IPython/core/payloadpage.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.payloadpage', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/payloadpage.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/payloadpage.py'))
_________________________________________________________ ERROR collecting IPython/core/prefilter.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.prefilter', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/prefilter.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/prefilter.py'))
________________________________________________________ ERROR collecting IPython/core/profileapp.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.profileapp', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/profileapp.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/profileapp.py'))
________________________________________________________ ERROR collecting IPython/core/profiledir.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.profiledir', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/profiledir.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/profiledir.py'))
__________________________________________________________ ERROR collecting IPython/core/prompts.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.prompts', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/prompts.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/prompts.py'))
________________________________________________________ ERROR collecting IPython/core/pylabtools.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.pylabtools', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/pylabtools.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/pylabtools.py'))
__________________________________________________________ ERROR collecting IPython/core/release.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.release', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/release.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/release.py'))
_________________________________________________________ ERROR collecting IPython/core/shellapp.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.shellapp', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/shellapp.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/shellapp.py'))
________________________________________________________ ERROR collecting IPython/core/splitinput.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.splitinput', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/splitinput.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/splitinput.py'))
__________________________________________________________ ERROR collecting IPython/core/ultratb.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.ultratb', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/ultratb.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/ultratb.py'))
___________________________________________________________ ERROR collecting IPython/core/usage.py ___________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.usage', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/usage.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/usage.py'))
________________________________________________________ ERROR collecting IPython/core/magics/auto.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.auto', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/magics/auto.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/magics/auto.py'))
_______________________________________________________ ERROR collecting IPython/core/magics/basic.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.basic', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/magics/basic.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/magics/basic.py'))
________________________________________________________ ERROR collecting IPython/core/magics/code.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.code', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/magics/code.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/magics/code.py'))
_______________________________________________________ ERROR collecting IPython/core/magics/config.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.config', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/magics/config.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/magics/config.py'))
______________________________________________________ ERROR collecting IPython/core/magics/display.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.display', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/magics/display.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/magics/display.py'))
_____________________________________________________ ERROR collecting IPython/core/magics/execution.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.execution', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/magics/execution.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/magics/execution.py'))
_____________________________________________________ ERROR collecting IPython/core/magics/extension.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.extension', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/magics/extension.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/magics/extension.py'))
______________________________________________________ ERROR collecting IPython/core/magics/history.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.history', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/magics/history.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/magics/history.py'))
______________________________________________________ ERROR collecting IPython/core/magics/logging.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.logging', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/magics/logging.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/magics/logging.py'))
_____________________________________________________ ERROR collecting IPython/core/magics/namespace.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.namespace', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/magics/namespace.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/magics/namespace.py'))
________________________________________________________ ERROR collecting IPython/core/magics/osm.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.osm', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/magics/osm.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/magics/osm.py'))
_____________________________________________________ ERROR collecting IPython/core/magics/packaging.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.packaging', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/magics/packaging.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/magics/packaging.py'))
_______________________________________________________ ERROR collecting IPython/core/magics/pylab.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.pylab', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/magics/pylab.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/magics/pylab.py'))
_______________________________________________________ ERROR collecting IPython/core/magics/script.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.script', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/magics/script.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/magics/script.py'))
_______________________________________________________ ERROR collecting IPython/core/tests/bad_all.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.bad_all', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/bad_all.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/bad_all.py'))
______________________________________________________ ERROR collecting IPython/core/tests/nonascii.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.nonascii', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/nonascii.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/nonascii.py'))
______________________________________________________ ERROR collecting IPython/core/tests/nonascii2.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.nonascii2', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/nonascii2.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/nonascii2.py'))
_____________________________________________________ ERROR collecting IPython/core/tests/print_argv.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.print_argv', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/print_argv.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/print_argv.py'))
---------------------------------------------------------------------- Captured stdout -----------------------------------------------------------------------
['-ra', '--import-mode=importlib']
_______________________________________________________ ERROR collecting IPython/core/tests/refbug.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.refbug', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/refbug.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/refbug.py'))
______________________________________________________ ERROR collecting IPython/core/tests/simpleerr.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.simpleerr', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/simpleerr.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/simpleerr.py'))
_______________________________________________________ ERROR collecting IPython/core/tests/tclass.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.tclass', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/tclass.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/tclass.py'))
---------------------------------------------------------------------- Captured stdout -----------------------------------------------------------------------
ARGV 1-: ['-ra', '--import-mode=importlib']
_____________________________________________________ ERROR collecting IPython/core/tests/test_alias.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_alias', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_alias.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_alias.py'))
__________________________________________________ ERROR collecting IPython/core/tests/test_application.py ___________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_application', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_application.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_application.py'))
_________________________________________________ ERROR collecting IPython/core/tests/test_async_helpers.py __________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_async_helpers', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_async_helpers.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_async_helpers.py'))
____________________________________________________ ERROR collecting IPython/core/tests/test_autocall.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_autocall', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_autocall.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_autocall.py'))
___________________________________________________ ERROR collecting IPython/core/tests/test_compilerop.py ___________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_compilerop', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_compilerop.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_compilerop.py'))
___________________________________________________ ERROR collecting IPython/core/tests/test_completer.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_completer', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_completer.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_completer.py'))
__________________________________________________ ERROR collecting IPython/core/tests/test_completerlib.py __________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_completerlib', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_completerlib.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_completerlib.py'))
____________________________________________________ ERROR collecting IPython/core/tests/test_debugger.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_debugger', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_debugger.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_debugger.py'))
____________________________________________________ ERROR collecting IPython/core/tests/test_display.py _____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_display', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_display.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_display.py'))
__________________________________________________ ERROR collecting IPython/core/tests/test_displayhook.py ___________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_displayhook', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_displayhook.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_displayhook.py'))
_____________________________________________________ ERROR collecting IPython/core/tests/test_events.py _____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_events', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_events.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_events.py'))
___________________________________________________ ERROR collecting IPython/core/tests/test_extension.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_extension', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_extension.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_extension.py'))
___________________________________________________ ERROR collecting IPython/core/tests/test_formatters.py ___________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_formatters', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_formatters.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_formatters.py'))
____________________________________________________ ERROR collecting IPython/core/tests/test_handlers.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_handlers', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_handlers.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_handlers.py'))
____________________________________________________ ERROR collecting IPython/core/tests/test_history.py _____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_history', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_history.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_history.py'))
_____________________________________________________ ERROR collecting IPython/core/tests/test_hooks.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_hooks', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_hooks.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_hooks.py'))
____________________________________________________ ERROR collecting IPython/core/tests/test_imports.py _____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_imports', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_imports.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_imports.py'))
_________________________________________________ ERROR collecting IPython/core/tests/test_inputsplitter.py __________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_inputsplitter', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_inputsplitter.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_inputsplitter.py'))
_________________________________________________ ERROR collecting IPython/core/tests/test_inputsplitter.py __________________________________________________
IPython/core/tests/test_inputsplitter.py:13: in <module>
    from IPython.core import inputsplitter as isp
E   Failed: DID NOT WARN. No warnings of type (<class 'DeprecationWarning'>,) were emitted. The list of emitted warnings is: [].
________________________________________________ ERROR collecting IPython/core/tests/test_inputtransformer.py ________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_inputtransformer', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_inputtransformer.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_inputtransformer.py'))
_______________________________________________ ERROR collecting IPython/core/tests/test_inputtransformer2.py ________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_inputtransformer2', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_inputtransformer2.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_inputtransformer2.py'))
_____________________________________________ ERROR collecting IPython/core/tests/test_inputtransformer2_line.py _____________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_inputtransformer2_line', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_inputtransformer2_line.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_inputtransformer2_line.py'))
________________________________________________ ERROR collecting IPython/core/tests/test_interactiveshell.py ________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_interactiveshell', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_interactiveshell.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_interactiveshell.py'))
_____________________________________________________ ERROR collecting IPython/core/tests/test_iplib.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_iplib', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_iplib.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_iplib.py'))
_____________________________________________________ ERROR collecting IPython/core/tests/test_logger.py _____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_logger', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_logger.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_logger.py'))
_____________________________________________________ ERROR collecting IPython/core/tests/test_magic.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_magic', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_magic.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_magic.py'))
________________________________________________ ERROR collecting IPython/core/tests/test_magic_arguments.py _________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_magic_arguments', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_magic_arguments.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_magic_arguments.py'))
_________________________________________________ ERROR collecting IPython/core/tests/test_magic_terminal.py _________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_magic_terminal', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_magic_terminal.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_magic_terminal.py'))
____________________________________________________ ERROR collecting IPython/core/tests/test_oinspect.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_oinspect', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_oinspect.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_oinspect.py'))
______________________________________________________ ERROR collecting IPython/core/tests/test_page.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_page', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_page.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_page.py'))
_____________________________________________________ ERROR collecting IPython/core/tests/test_paths.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_paths', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_paths.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_paths.py'))
___________________________________________________ ERROR collecting IPython/core/tests/test_prefilter.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_prefilter', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_prefilter.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_prefilter.py'))
____________________________________________________ ERROR collecting IPython/core/tests/test_profile.py _____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_profile', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_profile.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_profile.py'))
____________________________________________________ ERROR collecting IPython/core/tests/test_prompts.py _____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_prompts', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_prompts.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_prompts.py'))
___________________________________________________ ERROR collecting IPython/core/tests/test_pylabtools.py ___________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:533: in import_path
    importlib.import_module(module_name)
/usr/lib64/python3.8/importlib/__init__.py:127: in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
<frozen importlib._bootstrap>:1014: in _gcd_import
    ???
<frozen importlib._bootstrap>:991: in _find_and_load
    ???
<frozen importlib._bootstrap>:975: in _find_and_load_unlocked
    ???
<frozen importlib._bootstrap>:671: in _load_unlocked
    ???
/usr/lib/python3.8/site-packages/_pytest/assertion/rewrite.py:168: in exec_module
    exec(co, module.__dict__)
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_pylabtools.py:18: in <module>
    from matplotlib_inline import backend_inline
E   ModuleNotFoundError: No module named 'matplotlib_inline'
___________________________________________________ ERROR collecting IPython/core/tests/test_pylabtools.py ___________________________________________________
ImportError while importing test module '/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_pylabtools.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
IPython/core/tests/test_pylabtools.py:18: in <module>
    from matplotlib_inline import backend_inline
E   ModuleNotFoundError: No module named 'matplotlib_inline'
______________________________________________________ ERROR collecting IPython/core/tests/test_run.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_run', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_run.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_run.py'))
____________________________________________________ ERROR collecting IPython/core/tests/test_shellapp.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_shellapp', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_shellapp.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_shellapp.py'))
___________________________________________________ ERROR collecting IPython/core/tests/test_splitinput.py ___________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_splitinput', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_splitinput.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_splitinput.py'))
____________________________________________________ ERROR collecting IPython/core/tests/test_ultratb.py _____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_ultratb', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests/test_ultratb.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/core/tests/test_ultratb.py'))
_____________________________________________________ ERROR collecting IPython/extensions/autoreload.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.extensions.autoreload', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/extensions/autoreload.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/extensions/autoreload.py'))
_____________________________________________________ ERROR collecting IPython/extensions/storemagic.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.extensions.storemagic', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/extensions/storemagic.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/extensions/storemagic.py'))
________________________________________________ ERROR collecting IPython/extensions/tests/test_autoreload.py ________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.extensions.tests.test_autoreload', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/extensions/tests/test_autoreload.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/extensions/tests/test_autoreload.py'))
________________________________________________ ERROR collecting IPython/extensions/tests/test_storemagic.py ________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.extensions.tests.test_storemagic', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/extensions/tests/test_storemagic.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/extensions/tests/test_storemagic.py'))
______________________________________________________ ERROR collecting IPython/external/qt_loaders.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.external.qt_loaders', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/external/qt_loaders.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/external/qt_loaders.py'))
_________________________________________________ ERROR collecting IPython/external/tests/test_qt_loaders.py _________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.external.tests.test_qt_loaders', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/external/tests/test_qt_loaders.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/external/tests/test_qt_loaders.py'))
_______________________________________________________ ERROR collecting IPython/lib/backgroundjobs.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.backgroundjobs', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/backgroundjobs.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/backgroundjobs.py'))
_________________________________________________________ ERROR collecting IPython/lib/clipboard.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.clipboard', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/clipboard.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/clipboard.py'))
_________________________________________________________ ERROR collecting IPython/lib/deepreload.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.deepreload', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/deepreload.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/deepreload.py'))
____________________________________________________________ ERROR collecting IPython/lib/demo.py ____________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.demo', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/demo.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/demo.py'))
__________________________________________________________ ERROR collecting IPython/lib/display.py ___________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.display', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/display.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/display.py'))
________________________________________________________ ERROR collecting IPython/lib/editorhooks.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.editorhooks', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/editorhooks.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/editorhooks.py'))
_________________________________________________________ ERROR collecting IPython/lib/guisupport.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.guisupport', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/guisupport.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/guisupport.py'))
_________________________________________________________ ERROR collecting IPython/lib/latextools.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.latextools', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/latextools.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/latextools.py'))
___________________________________________________________ ERROR collecting IPython/lib/lexers.py ___________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.lexers', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/lexers.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/lexers.py'))
___________________________________________________________ ERROR collecting IPython/lib/pretty.py ___________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.pretty', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/pretty.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/pretty.py'))
_________________________________________________ ERROR collecting IPython/lib/tests/test_backgroundjobs.py __________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_backgroundjobs', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/tests/test_backgroundjobs.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/tests/test_backgroundjobs.py'))
____________________________________________________ ERROR collecting IPython/lib/tests/test_clipboard.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_clipboard', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/tests/test_clipboard.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/tests/test_clipboard.py'))
___________________________________________________ ERROR collecting IPython/lib/tests/test_deepreload.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_deepreload', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/tests/test_deepreload.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/tests/test_deepreload.py'))
_____________________________________________________ ERROR collecting IPython/lib/tests/test_display.py _____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_display', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/tests/test_display.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/tests/test_display.py'))
___________________________________________________ ERROR collecting IPython/lib/tests/test_editorhooks.py ___________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_editorhooks', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/tests/test_editorhooks.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/tests/test_editorhooks.py'))
_____________________________________________________ ERROR collecting IPython/lib/tests/test_imports.py _____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_imports', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/tests/test_imports.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/tests/test_imports.py'))
___________________________________________________ ERROR collecting IPython/lib/tests/test_latextools.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_latextools', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/tests/test_latextools.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/tests/test_latextools.py'))
_____________________________________________________ ERROR collecting IPython/lib/tests/test_lexers.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_lexers', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/tests/test_lexers.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/tests/test_lexers.py'))
_____________________________________________________ ERROR collecting IPython/lib/tests/test_pretty.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_pretty', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/tests/test_pretty.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/lib/tests/test_pretty.py'))
_______________________________________________________ ERROR collecting IPython/terminal/debugger.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.debugger', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/terminal/debugger.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/terminal/debugger.py'))
_________________________________________________________ ERROR collecting IPython/terminal/embed.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.embed', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/terminal/embed.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/terminal/embed.py'))
___________________________________________________ ERROR collecting IPython/terminal/interactiveshell.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.interactiveshell', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/terminal/interactiveshell.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/terminal/interactiveshell.py'))
_________________________________________________________ ERROR collecting IPython/terminal/ipapp.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.ipapp', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/terminal/ipapp.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/terminal/ipapp.py'))
________________________________________________________ ERROR collecting IPython/terminal/magics.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.magics', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/terminal/magics.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/terminal/magics.py'))
________________________________________________________ ERROR collecting IPython/terminal/prompts.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.prompts', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/terminal/prompts.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/terminal/prompts.py'))
________________________________________________________ ERROR collecting IPython/terminal/ptutils.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.ptutils', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/terminal/ptutils.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/terminal/ptutils.py'))
_______________________________________________________ ERROR collecting IPython/terminal/shortcuts.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.shortcuts', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/terminal/shortcuts.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/terminal/shortcuts.py'))
________________________________________________ ERROR collecting IPython/terminal/tests/test_debug_magic.py _________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.tests.test_debug_magic', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/terminal/tests/test_debug_magic.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/terminal/tests/test_debug_magic.py'))
___________________________________________________ ERROR collecting IPython/terminal/tests/test_embed.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.tests.test_embed', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/terminal/tests/test_embed.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/terminal/tests/test_embed.py'))
____________________________________________________ ERROR collecting IPython/terminal/tests/test_help.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.tests.test_help', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/terminal/tests/test_help.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/terminal/tests/test_help.py'))
______________________________________________ ERROR collecting IPython/terminal/tests/test_interactivshell.py _______________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.tests.test_interactivshell', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/terminal/tests/test_interactivshell.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/terminal/tests/test_interactivshell.py'))
_______________________________________________________ ERROR collecting IPython/testing/decorators.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.decorators', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/decorators.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/testing/decorators.py'))
______________________________________________________ ERROR collecting IPython/testing/globalipapp.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.globalipapp', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/globalipapp.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/testing/globalipapp.py'))
_______________________________________________________ ERROR collecting IPython/testing/ipunittest.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.ipunittest', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/ipunittest.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/testing/ipunittest.py'))
______________________________________________________ ERROR collecting IPython/testing/skipdoctest.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.skipdoctest', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/skipdoctest.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/testing/skipdoctest.py'))
_________________________________________________________ ERROR collecting IPython/testing/tools.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.tools', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/tools.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/testing/tools.py'))
____________________________________________________ ERROR collecting IPython/testing/plugin/dtexample.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.plugin.dtexample', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/dtexample.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/testing/plugin/dtexample.py'))
____________________________________________________ ERROR collecting IPython/testing/plugin/ipdoctest.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.plugin.ipdoctest', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/ipdoctest.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/testing/plugin/ipdoctest.py'))
________________________________________________ ERROR collecting IPython/testing/plugin/pytest_ipdoctest.py _________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.plugin.pytest_ipdoctest', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/testing/plugin/pytest_ipdoctest.py'))
_____________________________________________________ ERROR collecting IPython/testing/plugin/simple.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.plugin.simple', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/simple.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/testing/plugin/simple.py'))
___________________________________________________ ERROR collecting IPython/testing/plugin/simplevars.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.plugin.simplevars', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/simplevars.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/testing/plugin/simplevars.py'))
---------------------------------------------------------------------- Captured stdout -----------------------------------------------------------------------
x is: 1
_________________________________________________ ERROR collecting IPython/testing/plugin/test_ipdoctest.py __________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.plugin.test_ipdoctest', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/test_ipdoctest.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/testing/plugin/test_ipdoctest.py'))
____________________________________________________ ERROR collecting IPython/testing/plugin/test_refs.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.plugin.test_refs', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/test_refs.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/testing/plugin/test_refs.py'))
_________________________________________________ ERROR collecting IPython/testing/tests/test_decorators.py __________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.tests.test_decorators', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/tests/test_decorators.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/testing/tests/test_decorators.py'))
_________________________________________________ ERROR collecting IPython/testing/tests/test_ipunittest.py __________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.tests.test_ipunittest', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/tests/test_ipunittest.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/testing/tests/test_ipunittest.py'))
____________________________________________________ ERROR collecting IPython/testing/tests/test_tools.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.tests.test_tools', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/tests/test_tools.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/testing/tests/test_tools.py'))
________________________________________________________ ERROR collecting IPython/utils/PyColorize.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.PyColorize', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/PyColorize.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/PyColorize.py'))
_____________________________________________________ ERROR collecting IPython/utils/_process_common.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils._process_common', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/_process_common.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/_process_common.py'))
_________________________________________________________ ERROR collecting IPython/utils/_sysinfo.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils._sysinfo', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/_sysinfo.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/_sysinfo.py'))
_________________________________________________________ ERROR collecting IPython/utils/capture.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.capture', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/capture.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/capture.py'))
________________________________________________________ ERROR collecting IPython/utils/colorable.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.colorable', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/colorable.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/colorable.py'))
________________________________________________________ ERROR collecting IPython/utils/coloransi.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.coloransi', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/coloransi.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/coloransi.py'))
_________________________________________________________ ERROR collecting IPython/utils/contexts.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.contexts', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/contexts.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/contexts.py'))
___________________________________________________________ ERROR collecting IPython/utils/data.py ___________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.data', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/data.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/data.py'))
________________________________________________________ ERROR collecting IPython/utils/decorators.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.decorators', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/decorators.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/decorators.py'))
___________________________________________________________ ERROR collecting IPython/utils/dir2.py ___________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.dir2', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/dir2.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/dir2.py'))
_________________________________________________________ ERROR collecting IPython/utils/encoding.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.encoding', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/encoding.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/encoding.py'))
__________________________________________________________ ERROR collecting IPython/utils/frame.py ___________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.frame', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/frame.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/frame.py'))
_________________________________________________________ ERROR collecting IPython/utils/generics.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.generics', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/generics.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/generics.py'))
_______________________________________________________ ERROR collecting IPython/utils/importstring.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.importstring', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/importstring.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/importstring.py'))
____________________________________________________________ ERROR collecting IPython/utils/io.py ____________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.io', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/io.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/io.py'))
_________________________________________________________ ERROR collecting IPython/utils/ipstruct.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.ipstruct', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/ipstruct.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/ipstruct.py'))
_______________________________________________________ ERROR collecting IPython/utils/module_paths.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.module_paths', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/module_paths.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/module_paths.py'))
__________________________________________________________ ERROR collecting IPython/utils/openpy.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.openpy', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/openpy.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/openpy.py'))
___________________________________________________________ ERROR collecting IPython/utils/path.py ___________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.path', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/path.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/path.py'))
_________________________________________________________ ERROR collecting IPython/utils/process.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.process', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/process.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/process.py'))
________________________________________________________ ERROR collecting IPython/utils/py3compat.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.py3compat', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/py3compat.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/py3compat.py'))
_________________________________________________________ ERROR collecting IPython/utils/sentinel.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.sentinel', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/sentinel.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/sentinel.py'))
________________________________________________________ ERROR collecting IPython/utils/shimmodule.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.shimmodule', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/shimmodule.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/shimmodule.py'))
_______________________________________________________ ERROR collecting IPython/utils/strdispatch.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.strdispatch', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/strdispatch.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/strdispatch.py'))
_________________________________________________________ ERROR collecting IPython/utils/sysinfo.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.sysinfo', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/sysinfo.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/sysinfo.py'))
______________________________________________________ ERROR collecting IPython/utils/syspathcontext.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.syspathcontext', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/syspathcontext.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/syspathcontext.py'))
_________________________________________________________ ERROR collecting IPython/utils/tempdir.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tempdir', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tempdir.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tempdir.py'))
_________________________________________________________ ERROR collecting IPython/utils/terminal.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.terminal', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/terminal.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/terminal.py'))
___________________________________________________________ ERROR collecting IPython/utils/text.py ___________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.text', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/text.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/text.py'))
__________________________________________________________ ERROR collecting IPython/utils/timing.py __________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.timing', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/timing.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/timing.py'))
________________________________________________________ ERROR collecting IPython/utils/tokenutil.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tokenutil', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tokenutil.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tokenutil.py'))
____________________________________________________________ ERROR collecting IPython/utils/tz.py ____________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tz', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tz.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tz.py'))
________________________________________________________ ERROR collecting IPython/utils/ulinecache.py ________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.ulinecache', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/ulinecache.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/ulinecache.py'))
_________________________________________________________ ERROR collecting IPython/utils/wildcard.py _________________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.wildcard', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/wildcard.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/wildcard.py'))
____________________________________________________ ERROR collecting IPython/utils/tests/test_capture.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_capture', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_capture.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_capture.py'))
__________________________________________________ ERROR collecting IPython/utils/tests/test_decorators.py ___________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_decorators', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_decorators.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_decorators.py'))
__________________________________________________ ERROR collecting IPython/utils/tests/test_deprecated.py ___________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_deprecated', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_deprecated.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_deprecated.py'))
_____________________________________________________ ERROR collecting IPython/utils/tests/test_dir2.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_dir2', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_dir2.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_dir2.py'))
____________________________________________________ ERROR collecting IPython/utils/tests/test_imports.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_imports', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_imports.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_imports.py'))
_________________________________________________ ERROR collecting IPython/utils/tests/test_importstring.py __________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_importstring', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_importstring.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_importstring.py'))
______________________________________________________ ERROR collecting IPython/utils/tests/test_io.py _______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_io', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_io.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_io.py'))
_________________________________________________ ERROR collecting IPython/utils/tests/test_module_paths.py __________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_module_paths', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_module_paths.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_module_paths.py'))
____________________________________________________ ERROR collecting IPython/utils/tests/test_openpy.py _____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_openpy', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_openpy.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_openpy.py'))
_____________________________________________________ ERROR collecting IPython/utils/tests/test_path.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_path', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_path.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_path.py'))
____________________________________________________ ERROR collecting IPython/utils/tests/test_process.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_process', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_process.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_process.py'))
__________________________________________________ ERROR collecting IPython/utils/tests/test_pycolorize.py ___________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_pycolorize', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_pycolorize.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_pycolorize.py'))
__________________________________________________ ERROR collecting IPython/utils/tests/test_shimmodule.py ___________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_shimmodule', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_shimmodule.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_shimmodule.py'))
____________________________________________________ ERROR collecting IPython/utils/tests/test_sysinfo.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_sysinfo', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_sysinfo.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_sysinfo.py'))
____________________________________________________ ERROR collecting IPython/utils/tests/test_tempdir.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_tempdir', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_tempdir.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_tempdir.py'))
_____________________________________________________ ERROR collecting IPython/utils/tests/test_text.py ______________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_text', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_text.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_text.py'))
___________________________________________________ ERROR collecting IPython/utils/tests/test_tokenutil.py ___________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_tokenutil', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_tokenutil.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_tokenutil.py'))
___________________________________________________ ERROR collecting IPython/utils/tests/test_wildcard.py ____________________________________________________
../../BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/plugin/pytest_ipdoctest.py:649: in collect
    module = import_path(self.path, root=self.config.rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_wildcard', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests/test_wildcard.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.4.0/IPython/utils/tests/test_wildcard.py'))
================================================================== short test summary info ===================================================================
ERROR IPython/display.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.display', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_...
ERROR IPython/paths.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.paths', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x86_64/u...
ERROR IPython/core/alias.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.alias', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc3...
ERROR IPython/core/application.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.application', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython...
ERROR IPython/core/async_helpers.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.async_helpers', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipy...
ERROR IPython/core/autocall.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.autocall', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0...
ERROR IPython/core/builtin_trap.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.builtin_trap', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipyth...
ERROR IPython/core/compilerop.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.compilerop', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8...
ERROR IPython/core/completer.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.completer', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4...
ERROR IPython/core/completerlib.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.completerlib', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipyth...
ERROR IPython/core/crashhandler.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.crashhandler', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipyth...
ERROR IPython/core/debugger.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.debugger', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0...
ERROR IPython/core/display.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.display', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2...
ERROR IPython/core/display_functions.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.display_functions', '/home/tkloczko/rpmbuild/BUILDROOT/py...
ERROR IPython/core/display_trap.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.display_trap', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipyth...
ERROR IPython/core/displayhook.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.displayhook', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython...
ERROR IPython/core/displaypub.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.displaypub', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8...
ERROR IPython/core/error.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.error', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc3...
ERROR IPython/core/events.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.events', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.f...
ERROR IPython/core/excolors.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.excolors', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0...
ERROR IPython/core/extensions.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.extensions', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8...
ERROR IPython/core/formatters.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.formatters', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8...
ERROR IPython/core/getipython.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.getipython', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8...
ERROR IPython/core/history.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.history', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2...
ERROR IPython/core/historyapp.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.historyapp', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8...
ERROR IPython/core/hooks.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.hooks', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc3...
ERROR IPython/core/inputtransformer.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.inputtransformer', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/core/inputtransformer2.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.inputtransformer2', '/home/tkloczko/rpmbuild/BUILDROOT/py...
ERROR IPython/core/interactiveshell.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.interactiveshell', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/core/latex_symbols.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.latex_symbols', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipy...
ERROR IPython/core/logger.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.logger', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.f...
ERROR IPython/core/macro.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.macro', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc3...
ERROR IPython/core/magic.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magic', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc3...
ERROR IPython/core/magic_arguments.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magic_arguments', '/home/tkloczko/rpmbuild/BUILDROOT/python...
ERROR IPython/core/oinspect.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.oinspect', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0...
ERROR IPython/core/page.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.page', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35....
ERROR IPython/core/payload.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.payload', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2...
ERROR IPython/core/payloadpage.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.payloadpage', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython...
ERROR IPython/core/prefilter.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.prefilter', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4...
ERROR IPython/core/profileapp.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.profileapp', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8...
ERROR IPython/core/profiledir.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.profiledir', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8...
ERROR IPython/core/prompts.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.prompts', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2...
ERROR IPython/core/pylabtools.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.pylabtools', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8...
ERROR IPython/core/release.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.release', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2...
ERROR IPython/core/shellapp.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.shellapp', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0...
ERROR IPython/core/splitinput.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.splitinput', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8...
ERROR IPython/core/ultratb.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.ultratb', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2...
ERROR IPython/core/usage.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.usage', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc3...
ERROR IPython/core/magics/auto.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.auto', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython...
ERROR IPython/core/magics/basic.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.basic', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipyth...
ERROR IPython/core/magics/code.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.code', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython...
ERROR IPython/core/magics/config.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.config', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipy...
ERROR IPython/core/magics/display.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.display', '/home/tkloczko/rpmbuild/BUILDROOT/python-i...
ERROR IPython/core/magics/execution.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.execution', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/core/magics/extension.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.extension', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/core/magics/history.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.history', '/home/tkloczko/rpmbuild/BUILDROOT/python-i...
ERROR IPython/core/magics/logging.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.logging', '/home/tkloczko/rpmbuild/BUILDROOT/python-i...
ERROR IPython/core/magics/namespace.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.namespace', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/core/magics/osm.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.osm', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8...
ERROR IPython/core/magics/packaging.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.packaging', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/core/magics/pylab.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.pylab', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipyth...
ERROR IPython/core/magics/script.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.magics.script', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipy...
ERROR IPython/core/tests/bad_all.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.bad_all', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipy...
ERROR IPython/core/tests/nonascii.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.nonascii', '/home/tkloczko/rpmbuild/BUILDROOT/python-i...
ERROR IPython/core/tests/nonascii2.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.nonascii2', '/home/tkloczko/rpmbuild/BUILDROOT/python...
ERROR IPython/core/tests/print_argv.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.print_argv', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/core/tests/refbug.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.refbug', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipyth...
ERROR IPython/core/tests/simpleerr.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.simpleerr', '/home/tkloczko/rpmbuild/BUILDROOT/python...
ERROR IPython/core/tests/tclass.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.tclass', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipyth...
ERROR IPython/core/tests/test_alias.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_alias', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/core/tests/test_application.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_application', '/home/tkloczko/rpmbuild/BU...
ERROR IPython/core/tests/test_async_helpers.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_async_helpers', '/home/tkloczko/rpmbuil...
ERROR IPython/core/tests/test_autocall.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_autocall', '/home/tkloczko/rpmbuild/BUILDROO...
ERROR IPython/core/tests/test_compilerop.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_compilerop', '/home/tkloczko/rpmbuild/BUIL...
ERROR IPython/core/tests/test_completer.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_completer', '/home/tkloczko/rpmbuild/BUILDR...
ERROR IPython/core/tests/test_completerlib.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_completerlib', '/home/tkloczko/rpmbuild/...
ERROR IPython/core/tests/test_debugger.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_debugger', '/home/tkloczko/rpmbuild/BUILDROO...
ERROR IPython/core/tests/test_display.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_display', '/home/tkloczko/rpmbuild/BUILDROOT/...
ERROR IPython/core/tests/test_displayhook.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_displayhook', '/home/tkloczko/rpmbuild/BU...
ERROR IPython/core/tests/test_events.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_events', '/home/tkloczko/rpmbuild/BUILDROOT/py...
ERROR IPython/core/tests/test_extension.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_extension', '/home/tkloczko/rpmbuild/BUILDR...
ERROR IPython/core/tests/test_formatters.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_formatters', '/home/tkloczko/rpmbuild/BUIL...
ERROR IPython/core/tests/test_handlers.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_handlers', '/home/tkloczko/rpmbuild/BUILDROO...
ERROR IPython/core/tests/test_history.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_history', '/home/tkloczko/rpmbuild/BUILDROOT/...
ERROR IPython/core/tests/test_hooks.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_hooks', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/core/tests/test_imports.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_imports', '/home/tkloczko/rpmbuild/BUILDROOT/...
ERROR IPython/core/tests/test_inputsplitter.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_inputsplitter', '/home/tkloczko/rpmbuil...
ERROR IPython/core/tests/test_inputsplitter.py - Failed: DID NOT WARN. No warnings of type (<class 'DeprecationWarning'>,) were emitted. The list of emitte...
ERROR IPython/core/tests/test_inputtransformer.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_inputtransformer', '/home/tkloczko/r...
ERROR IPython/core/tests/test_inputtransformer2.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_inputtransformer2', '/home/tkloczko...
ERROR IPython/core/tests/test_inputtransformer2_line.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_inputtransformer2_line', '/hom...
ERROR IPython/core/tests/test_interactiveshell.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_interactiveshell', '/home/tkloczko/r...
ERROR IPython/core/tests/test_iplib.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_iplib', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/core/tests/test_logger.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_logger', '/home/tkloczko/rpmbuild/BUILDROOT/py...
ERROR IPython/core/tests/test_magic.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_magic', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/core/tests/test_magic_arguments.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_magic_arguments', '/home/tkloczko/rpm...
ERROR IPython/core/tests/test_magic_terminal.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_magic_terminal', '/home/tkloczko/rpmbu...
ERROR IPython/core/tests/test_oinspect.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_oinspect', '/home/tkloczko/rpmbuild/BUILDROO...
ERROR IPython/core/tests/test_page.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_page', '/home/tkloczko/rpmbuild/BUILDROOT/python...
ERROR IPython/core/tests/test_paths.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_paths', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/core/tests/test_prefilter.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_prefilter', '/home/tkloczko/rpmbuild/BUILDR...
ERROR IPython/core/tests/test_profile.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_profile', '/home/tkloczko/rpmbuild/BUILDROOT/...
ERROR IPython/core/tests/test_prompts.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_prompts', '/home/tkloczko/rpmbuild/BUILDROOT/...
ERROR IPython/core/tests/test_pylabtools.py - ModuleNotFoundError: No module named 'matplotlib_inline'
ERROR IPython/core/tests/test_pylabtools.py
ERROR IPython/core/tests/test_run.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_run', '/home/tkloczko/rpmbuild/BUILDROOT/python-i...
ERROR IPython/core/tests/test_shellapp.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_shellapp', '/home/tkloczko/rpmbuild/BUILDROO...
ERROR IPython/core/tests/test_splitinput.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_splitinput', '/home/tkloczko/rpmbuild/BUIL...
ERROR IPython/core/tests/test_ultratb.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.core.tests.test_ultratb', '/home/tkloczko/rpmbuild/BUILDROOT/...
ERROR IPython/extensions/autoreload.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.extensions.autoreload', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/extensions/storemagic.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.extensions.storemagic', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/extensions/tests/test_autoreload.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.extensions.tests.test_autoreload', '/home/tkloczko/r...
ERROR IPython/extensions/tests/test_storemagic.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.extensions.tests.test_storemagic', '/home/tkloczko/r...
ERROR IPython/external/qt_loaders.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.external.qt_loaders', '/home/tkloczko/rpmbuild/BUILDROOT/python-i...
ERROR IPython/external/tests/test_qt_loaders.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.external.tests.test_qt_loaders', '/home/tkloczko/rpmbu...
ERROR IPython/lib/backgroundjobs.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.backgroundjobs', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipy...
ERROR IPython/lib/clipboard.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.clipboard', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0...
ERROR IPython/lib/deepreload.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.deepreload', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4...
ERROR IPython/lib/demo.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.demo', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x8...
ERROR IPython/lib/display.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.display', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.f...
ERROR IPython/lib/editorhooks.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.editorhooks', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8...
ERROR IPython/lib/guisupport.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.guisupport', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4...
ERROR IPython/lib/latextools.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.latextools', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4...
ERROR IPython/lib/lexers.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.lexers', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc3...
ERROR IPython/lib/pretty.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.pretty', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc3...
ERROR IPython/lib/tests/test_backgroundjobs.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_backgroundjobs', '/home/tkloczko/rpmbuil...
ERROR IPython/lib/tests/test_clipboard.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_clipboard', '/home/tkloczko/rpmbuild/BUILDROO...
ERROR IPython/lib/tests/test_deepreload.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_deepreload', '/home/tkloczko/rpmbuild/BUILDR...
ERROR IPython/lib/tests/test_display.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_display', '/home/tkloczko/rpmbuild/BUILDROOT/py...
ERROR IPython/lib/tests/test_editorhooks.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_editorhooks', '/home/tkloczko/rpmbuild/BUIL...
ERROR IPython/lib/tests/test_imports.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_imports', '/home/tkloczko/rpmbuild/BUILDROOT/py...
ERROR IPython/lib/tests/test_latextools.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_latextools', '/home/tkloczko/rpmbuild/BUILDR...
ERROR IPython/lib/tests/test_lexers.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_lexers', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/lib/tests/test_pretty.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.lib.tests.test_pretty', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/terminal/debugger.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.debugger', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipyth...
ERROR IPython/terminal/embed.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.embed', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4...
ERROR IPython/terminal/interactiveshell.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.interactiveshell', '/home/tkloczko/rpmbuild/BUILDR...
ERROR IPython/terminal/ipapp.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.ipapp', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4...
ERROR IPython/terminal/magics.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.magics', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8...
ERROR IPython/terminal/prompts.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.prompts', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython...
ERROR IPython/terminal/ptutils.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.ptutils', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython...
ERROR IPython/terminal/shortcuts.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.shortcuts', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipy...
ERROR IPython/terminal/tests/test_debug_magic.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.tests.test_debug_magic', '/home/tkloczko/rpm...
ERROR IPython/terminal/tests/test_embed.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.tests.test_embed', '/home/tkloczko/rpmbuild/BUILDR...
ERROR IPython/terminal/tests/test_help.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.tests.test_help', '/home/tkloczko/rpmbuild/BUILDROO...
ERROR IPython/terminal/tests/test_interactivshell.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.terminal.tests.test_interactivshell', '/home/tklo...
ERROR IPython/testing/decorators.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.decorators', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipy...
ERROR IPython/testing/globalipapp.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.globalipapp', '/home/tkloczko/rpmbuild/BUILDROOT/python-i...
ERROR IPython/testing/ipunittest.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.ipunittest', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipy...
ERROR IPython/testing/skipdoctest.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.skipdoctest', '/home/tkloczko/rpmbuild/BUILDROOT/python-i...
ERROR IPython/testing/tools.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.tools', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0...
ERROR IPython/testing/plugin/dtexample.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.plugin.dtexample', '/home/tkloczko/rpmbuild/BUILDROO...
ERROR IPython/testing/plugin/ipdoctest.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.plugin.ipdoctest', '/home/tkloczko/rpmbuild/BUILDROO...
ERROR IPython/testing/plugin/pytest_ipdoctest.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.plugin.pytest_ipdoctest', '/home/tkloczko/rpm...
ERROR IPython/testing/plugin/simple.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.plugin.simple', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/testing/plugin/simplevars.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.plugin.simplevars', '/home/tkloczko/rpmbuild/BUILDR...
ERROR IPython/testing/plugin/test_ipdoctest.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.plugin.test_ipdoctest', '/home/tkloczko/rpmbuil...
ERROR IPython/testing/plugin/test_refs.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.plugin.test_refs', '/home/tkloczko/rpmbuild/BUILDROO...
ERROR IPython/testing/tests/test_decorators.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.tests.test_decorators', '/home/tkloczko/rpmbuil...
ERROR IPython/testing/tests/test_ipunittest.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.tests.test_ipunittest', '/home/tkloczko/rpmbuil...
ERROR IPython/testing/tests/test_tools.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.testing.tests.test_tools', '/home/tkloczko/rpmbuild/BUILDROO...
ERROR IPython/utils/PyColorize.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.PyColorize', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython...
ERROR IPython/utils/_process_common.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils._process_common', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/utils/_sysinfo.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils._sysinfo', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4...
ERROR IPython/utils/capture.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.capture', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0...
ERROR IPython/utils/colorable.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.colorable', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8...
ERROR IPython/utils/coloransi.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.coloransi', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8...
ERROR IPython/utils/contexts.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.contexts', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4...
ERROR IPython/utils/data.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.data', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc3...
ERROR IPython/utils/decorators.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.decorators', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython...
ERROR IPython/utils/dir2.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.dir2', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc3...
ERROR IPython/utils/encoding.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.encoding', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4...
ERROR IPython/utils/frame.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.frame', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.f...
ERROR IPython/utils/generics.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.generics', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4...
ERROR IPython/utils/importstring.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.importstring', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipy...
ERROR IPython/utils/io.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.io', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x8...
ERROR IPython/utils/ipstruct.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.ipstruct', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4...
ERROR IPython/utils/module_paths.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.module_paths', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipy...
ERROR IPython/utils/openpy.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.openpy', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2...
ERROR IPython/utils/path.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.path', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc3...
ERROR IPython/utils/process.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.process', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0...
ERROR IPython/utils/py3compat.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.py3compat', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8...
ERROR IPython/utils/sentinel.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.sentinel', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4...
ERROR IPython/utils/shimmodule.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.shimmodule', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython...
ERROR IPython/utils/strdispatch.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.strdispatch', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipyth...
ERROR IPython/utils/sysinfo.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.sysinfo', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0...
ERROR IPython/utils/syspathcontext.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.syspathcontext', '/home/tkloczko/rpmbuild/BUILDROOT/python...
ERROR IPython/utils/tempdir.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tempdir', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0...
ERROR IPython/utils/terminal.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.terminal', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4...
ERROR IPython/utils/text.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.text', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc3...
ERROR IPython/utils/timing.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.timing', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2...
ERROR IPython/utils/tokenutil.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tokenutil', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8...
ERROR IPython/utils/tz.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tz', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4.0-2.fc35.x8...
ERROR IPython/utils/ulinecache.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.ulinecache', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython...
ERROR IPython/utils/wildcard.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.wildcard', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.4...
ERROR IPython/utils/tests/test_capture.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_capture', '/home/tkloczko/rpmbuild/BUILDROO...
ERROR IPython/utils/tests/test_decorators.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_decorators', '/home/tkloczko/rpmbuild/BU...
ERROR IPython/utils/tests/test_deprecated.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_deprecated', '/home/tkloczko/rpmbuild/BU...
ERROR IPython/utils/tests/test_dir2.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_dir2', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/utils/tests/test_imports.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_imports', '/home/tkloczko/rpmbuild/BUILDROO...
ERROR IPython/utils/tests/test_importstring.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_importstring', '/home/tkloczko/rpmbuil...
ERROR IPython/utils/tests/test_io.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_io', '/home/tkloczko/rpmbuild/BUILDROOT/python-i...
ERROR IPython/utils/tests/test_module_paths.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_module_paths', '/home/tkloczko/rpmbuil...
ERROR IPython/utils/tests/test_openpy.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_openpy', '/home/tkloczko/rpmbuild/BUILDROOT/...
ERROR IPython/utils/tests/test_path.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_path', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/utils/tests/test_process.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_process', '/home/tkloczko/rpmbuild/BUILDROO...
ERROR IPython/utils/tests/test_pycolorize.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_pycolorize', '/home/tkloczko/rpmbuild/BU...
ERROR IPython/utils/tests/test_shimmodule.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_shimmodule', '/home/tkloczko/rpmbuild/BU...
ERROR IPython/utils/tests/test_sysinfo.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_sysinfo', '/home/tkloczko/rpmbuild/BUILDROO...
ERROR IPython/utils/tests/test_tempdir.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_tempdir', '/home/tkloczko/rpmbuild/BUILDROO...
ERROR IPython/utils/tests/test_text.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_text', '/home/tkloczko/rpmbuild/BUILDROOT/pyth...
ERROR IPython/utils/tests/test_tokenutil.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_tokenutil', '/home/tkloczko/rpmbuild/BUIL...
ERROR IPython/utils/tests/test_wildcard.py - _pytest.pathlib.ImportPathMismatchError: ('IPython.utils.tests.test_wildcard', '/home/tkloczko/rpmbuild/BUILDR...
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 213 errors during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
==================================================================== 213 errors in 9.17s =====================================================================

@kloczek
Copy link
Contributor Author

kloczek commented Apr 8, 2023

Gentle ping .. 🤔
Just tested latest version and looks like issue still is around

+ PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.12.0-2.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.12.0-2.fc35.x86_64/usr/lib/python3.8/site-packages
+ /usr/bin/pytest -ra -m 'not network'
==================================================================================== test session starts ====================================================================================
platform linux -- Python 3.8.16, pytest-7.2.2, pluggy-1.0.0
rootdir: /home/tkloczko/rpmbuild/BUILD/ipython-8.12.0, configfile: pytest.ini
plugins: asyncio-0.21.0
asyncio: mode=strict
collected 0 items / 1 error

========================================================================================== ERRORS ===========================================================================================
_______________________________________________________________________________ ERROR collecting test session _______________________________________________________________________________
/usr/lib/python3.8/site-packages/_pytest/config/__init__.py:635: in _importconftest
    mod = import_path(conftestpath, mode=importmode, root=rootpath)
/usr/lib/python3.8/site-packages/_pytest/pathlib.py:556: in import_path
    raise ImportPathMismatchError(module_name, module_file, path)
E   _pytest.pathlib.ImportPathMismatchError: ('IPython.conftest', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.12.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/conftest.py', PosixPath('/home/tkloczko/rpmbuild/BUILD/ipython-8.12.0/IPython/conftest.py'))
================================================================================== short test summary info ==================================================================================
ERROR  - _pytest.pathlib.ImportPathMismatchError: ('IPython.conftest', '/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.12.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/conftest.py...
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 1 error during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
===================================================================================== 1 error in 0.41s ======================================================================================

@kloczek
Copy link
Contributor Author

kloczek commented Apr 8, 2023

Looks like it is yet anither issue.
Test suite files are installed.

[tkloczko@pers-jacek site-packages]$ find $PWD -name tests -type d
/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.12.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/core/tests
/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.12.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/extensions/tests
/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.12.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/external/tests
/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.12.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/lib/tests
/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.12.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/terminal/tests
/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.12.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/testing/tests
/home/tkloczko/rpmbuild/BUILDROOT/python-ipython-8.12.0-2.fc35.x86_64/usr/lib/python3.8/site-packages/IPython/utils/tests

It would be good to move all test suite files to tests/ because that path is automatically skipped on formring .whl archive.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants