Skip to content
This repository has been archived by the owner on Mar 24, 2023. It is now read-only.

Commit

Permalink
fix up init_chart -> init stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
dexhorthy committed Aug 20, 2018
1 parent a2e2600 commit 1b70c00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
4 changes: 2 additions & 2 deletions integration/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN cd /go/src/github.com/replicatedhq/ship && \
go test -c ./integration/base && \
go test -c ./integration/update && \
go test -c ./integration/init_app && \
go test -c ./integration/init_chart
go test -c ./integration/init

# package things up
FROM alpine
Expand All @@ -53,7 +53,7 @@ RUN cd /test && rm *.go
COPY --from=build-step /go/src/github.com/replicatedhq/ship/base.test /test/base/
COPY --from=build-step /go/src/github.com/replicatedhq/ship/update.test /test/update/
COPY --from=build-step /go/src/github.com/replicatedhq/ship/init_app.test /test/init_app/
COPY --from=build-step /go/src/github.com/replicatedhq/ship/init_chart.test /test/init_chart/
COPY --from=build-step /go/src/github.com/replicatedhq/ship/init.test /test/init/
ENTRYPOINT ./integration_docker_start.sh


Expand Down
12 changes: 2 additions & 10 deletions integration/integration_docker_start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,13 @@ set -e
$GOPATH/bin/registry serve config.yml > /dev/null 2>&1 &
sleep 2
cd base/
echo "START BASE TESTS"
./base.test
echo "END BASE TESTS"

cd ../update
echo "START UPDATE TESTS"
./update.test
echo "END UPDATE TESTS"

cd ../init_app
echo "START INIT_APP TESTS"
./init_app.test
echo "END INIT_APP TESTS"

cd ../init_chart
echo "START INIT_CHART TESTS"
./init_chart.test
echo "END INIT_CHART TESTS"
cd ../init
./init.test

0 comments on commit 1b70c00

Please sign in to comment.