From bd1917dec25ce878477456b80a448b9334330b94 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Fri, 27 Nov 2015 14:04:45 +0100 Subject: `--local` is now the default when running the testsuite --- test/test.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'test') diff --git a/test/test.py b/test/test.py index 2072e18..34bb4b2 100644 --- a/test/test.py +++ b/test/test.py @@ -96,17 +96,10 @@ if __name__ == '__main__': import argparse parser = argparse.ArgumentParser(description='MAT testsuite') - parser.add_argument('-l', '--local', action='store_true', - help='Test the local version of mat') parser.add_argument('-s', '--system', action='store_true', help='Test the system-wide version of mat') - if parser.parse_args().local is True: - IS_LOCAL = True - elif parser.parse_args().system is True: + if parser.parse_args().system is True: IS_LOCAL = False - else: - print('Please specify either --local or --system') - sys.exit(1) sys.exit(run_all_tests() is False) -- cgit v1.3