diff options
Diffstat (limited to 'test/CheckBaselineTests.py')
-rwxr-xr-x | test/CheckBaselineTests.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/test/CheckBaselineTests.py b/test/CheckBaselineTests.py index 404c12db..3c3e590b 100755 --- a/test/CheckBaselineTests.py +++ b/test/CheckBaselineTests.py @@ -18,6 +18,35 @@ class CheckBaselineTests (CheckOptions): CheckOptions.__init__(self, args) self.missing_baseline_tests = set() + self.untested_options = [ + 'anon', + 'args-only', + 'cache', + 'debug', + 'download', + 'file', + 'force-color', + 'force-pager', + 'full-help', + 'help', + 'help-calc', + 'help-comm', + 'help-disp', + 'import', + 'init-file', + 'no-color', + 'options', + 'price-db', + 'price-exp', + 'revalued-total', + 'script', + 'seed', + 'trace', + 'verbose', + 'verify', + 'version' + ] + def main(self): for option in self.ledger_options(): if option in self.untested_options: continue |