summaryrefslogtreecommitdiffstats
path: root/testing/runtests.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/runtests.py')
-rw-r--r--testing/runtests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/runtests.py b/testing/runtests.py
index a714cd8..9330d23 100644
--- a/testing/runtests.py
+++ b/testing/runtests.py
@@ -293,7 +293,8 @@ def main():
action="store_true")
parser.add_argument('--keep',help='keep result directories',
action="store_true")
- args = parser.parse_args()
+ test_flags = os.getenv('TEST_FLAGS', default='').split()
+ args = parser.parse_args(test_flags + sys.argv[1:])
# sanity check
if (not args.xml) and (not args.pdf) and (not args.xhtml):