-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrun-tests.sh
More file actions
executable file
·24 lines (20 loc) · 945 Bytes
/
run-tests.sh
File metadata and controls
executable file
·24 lines (20 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
echo "Running functional tests for local-docker"
#cd tools
#./docker-cleanup.sh
#cd ..
python -m testtools.run functionaltests.local.test_local.TestLocal.test_app_deploy_no_service
python -m testtools.run functionaltests.local.test_local.TestLocal.test_app_deploy_with_mysql_service
python -m testtools.run functionaltests.local.test_local.TestLocal.test_mysql_instance_provision
echo "Running functional tests for google"
#cd tools
#./docker-cleanup.sh
#cd ..
python -m testtools.run functionaltests.google.test_google.TestGoogle.test_app_deploy_no_service
python -m testtools.run functionaltests.google.test_google.TestGoogle.test_app_deploy_with_mysql_service
python -m testtools.run functionaltests.google.test_google.TestGoogle.test_mysql_instance_provision
echo "Running functional tests for aws"
#cd tools
#./docker-cleanup.sh
#cd ..
python -m testtools.run functionaltests.aws.test_aws.TestAWS.test_app_deploy_no_service