1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-09-19 09:29:02 +00:00
starship/integration_test
2019-05-13 21:53:26 -06:00

14 lines
391 B
Bash
Executable File

#!/bin/bash
if ! (docker --version); then
printf 'Docker is required to run the starship integration tests.\n'
printf 'Please download and install Docker in order to run these tests locally.\n'
exit 1
fi
printf 'Building test docker image:\n'
docker build -f tests/Dockerfile --tag starship-test .
printf 'Running test suite:\n'
docker run --rm -t -v $(pwd):/starship starship-test