File: start_tests.sh

package info (click to toggle)
python-dcos 0.2.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,188 kB
  • sloc: python: 8,196; sh: 194; makefile: 28
file content (20 lines) | stat: -rwxr-xr-x 349 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash -x

# move the dcos package
cd dcos-cli

make clean env
source env/bin/activate
make || exit $?
deactivate

# Move down to the dcoscli package
cd cli

cp tests/data/dcos.toml $DCOS_CONFIG
echo "$VBOX_IP dcos.snakeoil.mesosphere.com" | sudo tee -a /etc/hosts > /dev/null

make clean env
source env/bin/activate
make || exit $?
deactivate