Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reducing CI Log output Verbosity #2619

Merged
merged 3 commits into from
Mar 9, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,23 +48,23 @@ script:
- DOCKER_CMD="docker run --rm --env-file /tmp/env_file -e GH_TOKEN -v $PWD:/git-restapi/ lmazuel/swagger-to-sdk"
- >-
if [[ $MODE == 'python' ]]; then
$DOCKER_CMD Azure/azure-sdk-for-python -v
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is removing the verbose option too aggressive here, @lmazuel? I still want to be able to see warnings and errors.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, without verbose mode doesn't show anything

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I mean, yes you will get warnings and error, but no info. If everything is fine, you likely have no message at all.

$DOCKER_CMD Azure/azure-sdk-for-python
fi
- >-
if [[ $MODE == 'node' ]]; then
$DOCKER_CMD Azure/azure-sdk-for-node -v
$DOCKER_CMD Azure/azure-sdk-for-node
fi
- >-
if [[ $MODE == 'ruby' ]]; then
$DOCKER_CMD Azure/azure-sdk-for-ruby -v
$DOCKER_CMD Azure/azure-sdk-for-ruby
fi
- >-
if [[ $MODE == 'go' ]]; then
$DOCKER_CMD Azure/azure-sdk-for-go -o latest -v
$DOCKER_CMD Azure/azure-sdk-for-go -o latest
fi
- >-
if [[ $MODE == 'java' ]]; then
$DOCKER_CMD Azure/azure-libraries-for-java -v
$DOCKER_CMD Azure/azure-libraries-for-java
fi
- >-
if [[ $MODE == 'syntax' ]]; then
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
"url": "http://github.com/azure/azure-rest-api-specs/issues"
},
"scripts": {
"test": "mocha -t 500000"
"test": "mocha -t 500000 --reporter min"
}
}