I tried to run pytest on the project's tests, and I'm getting a lot of these errors:
def test_sint64(proto_lib):
> from test_signed_integer_proto import Int
E ModuleNotFoundError: No module named 'test_signed_integer_proto'
After building and installing the project, I can use its functions and classes, but I don't see anything named test_signed_integer_proto. However, suspiciously, there is a file test_signed_integer.py.
I've recently added a line about that in the README file as part of a PR I submitted. The repo owner gave me some secret command to run and I've included it under Unittesting section in the README.
I tried to run
pytest
on the project's tests, and I'm getting a lot of these errors:After building and installing the project, I can use its functions and classes, but I don't see anything named
test_signed_integer_proto
. However, suspiciously, there is a filetest_signed_integer.py
.Is this a typo?