mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
27 lines
628 B
Bash
Executable file
27 lines
628 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
# Cleanup
|
|
rm -rf docker-registry
|
|
|
|
# Setup the environment
|
|
export SETTINGS_FLAVOR=test
|
|
export DOCKER_REGISTRY_CONFIG=config_test.yml
|
|
export PYTHONPATH=$(pwd)/docker-registry/test
|
|
|
|
# Get latest docker registry
|
|
git clone -q https://github.com/dotcloud/docker-registry.git
|
|
cd docker-registry
|
|
sed -Ei "s#(boto_bucket: ).+#\1_env:S3_BUCKET#" config_test.yml
|
|
|
|
# Get dependencies
|
|
pip install -q -r requirements.txt
|
|
pip install -q -r test-requirements.txt
|
|
pip install -q tox
|
|
|
|
# Run registry tests
|
|
tox || exit 1
|
|
python -m unittest discover -p s3.py -s test || exit 1
|
|
python -m unittest discover -p workflow.py -s test
|
|
|