docker_test_wrap.sh 388 Bytes
Newer Older
1
2
3
4
5
6
7
8
#!/bin/bash
# Install and test steps on Linux
set -e

# Get needed utilities
MULTIBUILD_DIR=$(dirname "${BASH_SOURCE[0]}")
source $MULTIBUILD_DIR/common_utils.sh

9
10
11
# Change into root directory of repo
cd /io

12
# Configuration for this package
13
# This can override `install_wheel`, otherwise defined in common_utils.sh.
14
# It must define `run_tests`.
15
source config.sh
16
17
18

install_wheel
run_tests