This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # by defailt mint tests fail on the first failed test case, to change it follow these steps: | |
| git clone [email protected]:minio/minio.git | |
| cd minio/mint | |
| vim mint.sh +194 # comment "break" on string 194 to run all the tests and don't stop on the first fail | |
| docker build --no-cache -t minio/mint:local . -f Dockerfile.dev | |
| docker run \ | |
| --name mint \ | |
| --rm \ | |
| -it \ | |
| -e SERVER_ENDPOINT=10.3.199.254:9000 \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/mint/mint.sh b/mint/mint.sh | |
| index 5d9e997..952dc16 100755 | |
| --- a/mint/mint.sh | |
| +++ b/mint/mint.sh | |
| @@ -139,6 +139,7 @@ function main() | |
| export ENABLE_VIRTUAL_STYLE | |
| export GO111MODULE | |
| export GOPROXY | |
| + export BAIL | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # setup: | |
| # $ mkdir -p /tmp/s3 && cd /tmp/s3 | |
| # $ ~/js/nexenta/nef.extra/mc/test.sh 2>&1 | grep --color -E "^\+.+$|$" | |
| set -x; | |
| #set -e; | |
| HOST="1.1.1.1:9000" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # setup: | |
| # $ mkdir -p /tmp/s3 && cd /tmp/s3 | |
| # $ ~/js/nexenta/nef/test.sh 2>&1 | grep --color -E "^\+.+$|$" | |
| set -x; | |
| #set -e; | |
| HOST="1.1.1.1:9000" |