pyiron / actions

A centralized location for our GitHub actions
BSD 3-Clause "New" or "Revised" License
3 stars 0 forks source link

Open a flag for unit tests to omit coverage #89

Closed liamhuber closed 5 months ago

liamhuber commented 5 months ago

The line

coverage run -m unittest discover ${{ inputs.test-dir }}

Here in the unit-test action should get updated to something like

coverage run --omit=${{ inputs.ignore }} -m unittest discover ${{ inputs.test-dir }}

But I need to check if passing an empty omit causes trouble, etc, so I'm not going to get to it this instant.