-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtest_suite.sh
32 lines (22 loc) · 961 Bytes
/
test_suite.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash
set -e
echo "Running... test_computation_job_inputs"
coverage run --source=src test/test_computation_job_inputs.py
echo "Running... test_process_input_parameters"
coverage run --source=src test/test_process_input_parameters.py
echo "Running... test_computation_job_outputs"
coverage run --source=src test/test_computation_job_outputs.py
echo "Running... test_config_parser"
coverage run --source=src test/test_config_parser.py
echo "Running... test_bus_independent_messages"
coverage run --source=src test/test_bus_independent_messages.py
echo "Running... test_bot"
coverage run --source=src test/test_bot.py
echo "Running... test_path"
coverage run --source=src test/test_path.py
echo "Running... test_ftp_uploads"
coverage run --source=src test/test_ftp_uploads.py
echo "Running... test_action"
coverage run --source=src test/test_action.py
echo "Running... test_resource_cleaner"
coverage run --source=src test/test_resource_cleaner.py