JetBrains-Research/PyNose

Warn about empty test if the test case body is ellipsis `...`

Closed this issue · 1 comments

One can use ... instead of pass as a placeholder for an empty test, e.g.

class TestSolve(unittest.TestCase):
    def test_returns_correct_result(self):
        ...

The plugin doesn't report that.

Will add this.