push
travis-ci
27 of 27 new or added lines in 1 file covered. (100.0%)
4512 of 5423 relevant lines covered (83.2%)
2.5 hits per line
1 |
import logging |
3✔ |
2 |
|
|
3 |
log = logging.getLogger(__name__) |
3✔ |
4 |
|
|
5 |
|
|
6 |
class BaseValidator(object): |
3✔ |
7 |
def __init__(self, params): |
3✔ |
8 |
self.params = params
|
3✔ |
9 |
|
|
10 |
def split(self): |
3✔ |
11 |
pass
|
× |
12 |
|
|
13 |
def get_n_splits(self): |
3✔ |
14 |
pass
|
× |
15 |
|
|
16 |
def get_repeats(self): |
3✔ |
17 |
return 1 |
× |