diff --git a/docs/sources/project/test-and-docs.md b/docs/sources/project/test-and-docs.md index 66de450f55..bcf4167ff2 100644 --- a/docs/sources/project/test-and-docs.md +++ b/docs/sources/project/test-and-docs.md @@ -67,10 +67,6 @@ is simply `test`. The make file contains several targets for testing: test-unit Run just the unit tests. - - test-integration - Run just integration tests. - test-integration-cli Run the test for the integration command line interface. @@ -143,7 +139,7 @@ Try this now. 3. Run the tests using the `hack/make.sh` script. - root@5f8630b873fe:/go/src/github.com/docker/docker# hack/make.sh dynbinary binary cross test-unit test-integration test-integration-cli test-docker-py + root@5f8630b873fe:/go/src/github.com/docker/docker# hack/make.sh dynbinary binary cross test-unit test-integration-cli test-docker-py The tests run just as they did within your local host. diff --git a/hack/release.sh b/hack/release.sh index 04772546fd..1d3c9c372c 100755 --- a/hack/release.sh +++ b/hack/release.sh @@ -54,7 +54,7 @@ RELEASE_BUNDLES=( if [ "$1" != '--release-regardless-of-test-failure' ]; then RELEASE_BUNDLES=( - test-unit test-integration + test-unit "${RELEASE_BUNDLES[@]}" test-integration-cli )