| Total Complexity | 1 |
| Total Lines | 8 |
| Duplicated Lines | 0 % |
| 1 | """Unit tests configuration file.""" |
||
| 16 | class QuietReporter(base): |
||
| 17 | """A py.test reporting that only shows dots when running tests.""" |
||
| 18 | |||
| 19 | def __init__(self, *args, **kwargs): |
||
| 20 | super().__init__(*args, **kwargs) |
||
| 21 | self.verbosity = 0 |
||
| 22 | self.showlongtestinfo = False |
||
| 23 | self.showfspath = False |
||
| 24 | |||
| 26 |