summaryrefslogtreecommitdiff
path: root/test/CheckBaselineTests.py
diff options
context:
space:
mode:
authorAlexis Hildebrandt <afh@surryhill.net>2023-12-06 01:44:53 +0000
committerGitHub <noreply@github.com>2023-12-06 01:44:53 +0000
commitd270aa7b30f6cb0973467806b6b318c9fc39de47 (patch)
treed2a20d9658c3c78ca91e29e9a8343847f55c8516 /test/CheckBaselineTests.py
parenta0bd969581a5cf3a3f88c74ba31e4764d7b24fd2 (diff)
parentecbfaa9c2e6733d516351d0a815b4cd822bfed39 (diff)
downloadledger-d270aa7b30f6cb0973467806b6b318c9fc39de47.tar.gz
ledger-d270aa7b30f6cb0973467806b6b318c9fc39de47.tar.bz2
ledger-d270aa7b30f6cb0973467806b6b318c9fc39de47.zip
Merge pull request #2311 from afh/modernize-test-scripts
tests: Modernize test scripts
Diffstat (limited to 'test/CheckBaselineTests.py')
-rwxr-xr-xtest/CheckBaselineTests.py23
1 files changed, 4 insertions, 19 deletions
diff --git a/test/CheckBaselineTests.py b/test/CheckBaselineTests.py
index 9f52dd10..1a983b00 100755
--- a/test/CheckBaselineTests.py
+++ b/test/CheckBaselineTests.py
@@ -1,9 +1,9 @@
#!/usr/bin/env python3
+import argparse
import sys
import re
import os
-import argparse
from os.path import *
from subprocess import Popen, PIPE
@@ -51,24 +51,9 @@ class CheckBaselineTests (CheckOptions):
return errors
if __name__ == "__main__":
- def getargs():
- parser = argparse.ArgumentParser(prog='CheckBaselineTests',
- description='Check that ledger options are tested')
- parser.add_argument('-l', '--ledger',
- dest='ledger',
- type=str,
- action='store',
- required=True,
- help='the path to the ledger executable to test with')
- parser.add_argument('-s', '--source',
- dest='source',
- type=str,
- action='store',
- required=True,
- help='the path to the top level ledger source directory')
- return parser.parse_args()
-
- args = getargs()
+ args = argparse.ArgumentParser(prog='CheckBaselineTests',
+ description='Check that ledger options are tested',
+ parents=[CheckOptions.parser()]).parse_args()
script = CheckBaselineTests(args)
status = script.main()
sys.exit(status)