oh sorry, i should say that the command i'm runnin...
# general
f
oh sorry, i should say that the command i'm running is
PEX_VERBOSE=9 ./pants test src/test/python/pinterest/container_report/
; i did it with verbose that time
h
Hello! To confirm I’m reading this the right way, you’re using
docopt
in your own code
container_report.py
, right? Has this always been happening, or only recently? To confirm that coverage is the issue, you can temporarily turn off coverage by commenting out
coverage=auto
in
pytest.ini
, then run again.
f
i figured it out -- i had a loose
arguments = docopt(__doc__, version=VERSION)
that wasn't in any function in my code
h
Interesting - do you know why that line of code would look at the argv for what Pants is running, though? I’m surprised this happened. Although I’m glad it’s working!