diff options
Diffstat (limited to 'test/py/lib/test_repo.py')
-rw-r--r-- | test/py/lib/test_repo.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/test/py/lib/test_repo.py b/test/py/lib/test_repo.py index 2820659..eb2786d 100644 --- a/test/py/lib/test_repo.py +++ b/test/py/lib/test_repo.py @@ -57,10 +57,6 @@ class TestRepo(Repo): def codename(): pass - @staticmethod - def enabled_for_stress_testing(): - return False - @abc.abstractmethod def run_exit_code_matches(self, ec): pass @@ -130,10 +126,6 @@ class TestRepoOutputSimple(TestRepoOutput): def codename(): return 'output_simple' - @staticmethod - def enabled_for_stress_testing(): - return True - def format_output_script(self): return OUTPUT_SCRIPT_SIMPLE @@ -173,10 +165,6 @@ class TestRepoOutputLong(TestRepoOutput): def codename(): return 'output_long' - @staticmethod - def enabled_for_stress_testing(): - return True - def format_output_script(self): output_len = TestRepoOutputLong.OUTPUT_LEN_KB output_len = shlex.quote(str(output_len)) |