|
@@ -4,7 +4,7 @@ import argparse
|
4
|
4
|
|
5
|
5
|
parser = argparse.ArgumentParser(description='Select sandbox.')
|
6
|
6
|
parser.add_argument('sandbox', metavar='sandbox', type=str, nargs=1,
|
7
|
|
- help='Name of sandbox: ' + ', '.join(['exploration', 'all']))
|
|
7
|
+ help='Name of sandbox: ' + ', '.join(['exploration', 'all', 'test']))
|
8
|
8
|
|
9
|
9
|
args = parser.parse_args()
|
10
|
10
|
|
|
@@ -12,6 +12,8 @@ if 'all' in args.sandbox:
|
12
|
12
|
from intelligine.sandbox.all.all import simulations, visualisation as pygame_visualisation
|
13
|
13
|
elif 'exploration' in args.sandbox:
|
14
|
14
|
from intelligine.sandbox.exploration.exploration import simulations, visualisation as pygame_visualisation
|
|
15
|
+elif 'test' in args.sandbox:
|
|
16
|
+ from intelligine.sandbox.test.test import simulations, visualisation as pygame_visualisation
|
15
|
17
|
else:
|
16
|
18
|
parser.parse_args(['-h'])
|
17
|
19
|
|