I have a python library that contains a function and a command line interface to the function. But I can’t run the code that uses parseargs from pytest.
I put the command line code in a separate file. Is it possible tell pytest to skip the file?
I am not trying to skip a test. I am just trying to skip the source files that can’t be executed from pytest so that I can hit 100% coverage.
I tried putting the command line file into a separate folder but that created other issues with setuptools.