Ao tentar fazer a atividade o pytest da o seguinte erro:
Microsoft Windows [versão 10.0.22621.963]
(c) Microsoft Corporation. Todos os direitos reservados.
(venv) C:\Users\Joube\Documents\Alura\Formações\Python e orientação a objetos\Python e TDD explorando testes u
nitários>pytest
============================================ test session starts ============================================
platform win32 -- Python 3.11.0, pytest-7.2.0, pluggy-1.0.0
rootdir: C:\Users\Joube\Documents\Alura\Formações\Python e orientação a objetos\Python e TDD explorando testes unitários
collected 0 items / 1 error
================================================== ERRORS ===================================================
__________________________________ ERROR collecting tests/test_bytebank.py __________________________________
ImportError while importing test module 'C:\Users\Joube\Documents\Alura\Formações\Python e orientação a objetos\Python e TDD explorando testes unitários\tests\test_bytebank.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
C:\Users\Joube\AppData\Local\Programs\Python\Python311\Lib\importlib\__init__.py:126: in import_module
return _bootstrap._gcd_import(name[level:], package, level)
tests\test_bytebank.py:1: in <module>
from bytebank import Funcionario
E ModuleNotFoundError: No module named 'bytebank'
========================================== short test summary info ==========================================
ERROR tests/test_bytebank.py
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 1 error during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
============================================= 1 error in 0.20s ==============================================
Como resolver?