Method
__init__
(self, path, targets, tests=[], clean=False, testrunner_args=[])
Source from the content-addressed store, hash-verified
| 426 | class RawConfig: |
| 427 | |
| 428 | def __init__(self, path, targets, tests=[], clean=False, testrunner_args=[]): |
| 429 | self.path = path |
| 430 | self.targets = set(targets) |
| 431 | self.tests = set(tests) |
| 432 | self.testrunner_args = testrunner_args |
| 433 | self.clean = clean |
| 434 | |
| 435 | def extend(self, targets, tests=[], clean=False): |
| 436 | self.targets.update(targets) |
Tested by
no test coverage detected