mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
Include TLS fixes and relative imports:
c8b4935534
Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
13 lines
266 B
Bash
Executable File
13 lines
266 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
|
|
target="tests"
|
|
|
|
if [[ -n "$@" ]]; then
|
|
target="$@"
|
|
fi
|
|
|
|
docker build -t fig .
|
|
docker run -v /var/run/docker.sock:/var/run/docker.sock fig flake8 --exclude=packages fig
|
|
docker run -v /var/run/docker.sock:/var/run/docker.sock fig nosetests $target
|