Total Complexity | 2 |
Total Lines | 8 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | # coding=utf-8 |
||
24 | class TestRunner(TestRunnerBase): |
||
25 | def setup_test_environment(self, **kwargs): |
||
26 | super(TestRunner, self).setup_test_environment(**kwargs) |
||
27 | settings.TESTING = True |
||
28 | |||
29 | def teardown_test_environment(self, **kwargs): |
||
30 | super(TestRunner, self).teardown_test_environment(**kwargs) |
||
31 | settings.TESTING = False |
||
32 | |||
43 |