-
I wonder if I misunderstand the coverage feature or its output. I only want the last four lines (beginning with
I run green from the projects folder which is in the so called source-layout.
Any idea what went wrong on my side? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Your python packages are installed in a directory structure I haven't seen before, specifically You can manually add it with $ green -ro '*/dist-packages*' |
Beta Was this translation helpful? Give feedback.
Your python packages are installed in a directory structure I haven't seen before, specifically
/dist-packages/
. It's not in the default "omit" list I created.You can manually add it with
-o
or--omit-patterns
like this:$ green -ro '*/dist-packages*'