| Total Complexity | 1 | 
| Total Lines | 8 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | """Unit tests configuration file."""  | 
            ||
| 9 | class QuietReporter(base):  | 
            ||
| 10 | """A py.test reporting that only shows dots when running tests."""  | 
            ||
| 11 | |||
| 12 | def __init__(self, *args, **kwargs):  | 
            ||
| 13 | super().__init__(*args, **kwargs)  | 
            ||
| 14 | self.verbosity = 0  | 
            ||
| 15 | self.showlongtestinfo = False  | 
            ||
| 16 | self.showfspath = False  | 
            ||
| 17 | |||
| 19 |