I'm adding some performance smoke tests to our test suite, and they fail spectacularly when running py.test with coverage. This isn't very surprising, nor an indication of a performance issue (timings under coverage don't relate to anything real..)
How do I mark (ie. pytest.mark.skipif(..)) these tests so they're automatically skipped during coverage runs?
I'm using PyCharm during development if it is relevant.