Skip to content
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
Copy Markdown
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, Laurent Mazuel (@lmazuel)? I still want to be able to see warnings and errors.

Copy link
Copy Markdown
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
Copy Markdown
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": "https://github.com/azure/azure-rest-api-specs/issues"
},
"scripts": {
"test": "mocha -t 500000"
"test": "mocha -t 500000 --reporter min"
}
}