mirror of
https://github.com/openshift/source-to-image.git
synced 2026-02-05 12:44:54 +01:00
* Isolate integration tests that don't require Docker * Add OWNERS file * Add make commands to run integration tests
12 lines
183 B
Bash
Executable File
12 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
readonly S2I_ROOT=$(dirname "${BASH_SOURCE}")/..
|
|
|
|
"${S2I_ROOT}/hack/test-docker.sh"
|
|
"${S2I_ROOT}/hack/test-dockerfile.sh"
|
|
|