mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-04 17:49:48 +01:00
1ae5126bb4
Signed-off-by: stonezdj <stonezdj@gmail.com>
19 lines
602 B
Bash
Executable File
19 lines
602 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export POSTGRESQL_HOST=$1
|
|
export REGISTRY_URL=$1:5000
|
|
export CHROME_BIN=chromium-browser
|
|
export DISPLAY=:99.0
|
|
sh -e /etc/init.d/xvfb start
|
|
|
|
cd ./src/portal && npm run lint && npm run lint:lib && npm run test && cd -
|
|
sudo docker-compose -f ./make/docker-compose.test.yml up -d
|
|
sleep 10
|
|
./tests/pushimage.sh
|
|
docker ps
|
|
|
|
go test -race -i ./src/core ./src/jobservice
|
|
sudo -E env "PATH=$PATH" "POSTGRES_MIGRATION_SCRIPTS_PATH=/home/travis/gopath/src/github.com/goharbor/harbor/make/migrations/postgresql/" ./tests/coverage4gotest.sh
|
|
goveralls -coverprofile=profile.cov -service=travis-ci |