forked from openedx-unsupported/devstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.sh
More file actions
executable file
·25 lines (22 loc) · 700 Bytes
/
run.sh
File metadata and controls
executable file
·25 lines (22 loc) · 700 Bytes
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
#!/bin/bash
set -e
set -x
if [[ $DEVSTACK == 'lms' ]]; then
make dev.provision
make dev.up
sleep 60 # LMS needs like 60 seconds to come up
make healthchecks
make validate-lms-volume
# Disable e2e-tests until either:
# * tests are less flaky
# * We have a way to test the infrastructure for testing but ignore the test results.
# See PLAT-1712
# - make e2e-tests
make up-marketing-detached
fi
if [[ $DEVSTACK == 'analytics_pipeline' ]]; then
make dev.provision.analytics_pipeline
make dev.up.analytics_pipeline
sleep 30 # hadoop services need some time to be fully functional and out of safemode
make analytics-pipeline-devstack-test
fi