-
Notifications
You must be signed in to change notification settings - Fork 50
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
Framework updates #54
Conversation
nitisht
commented
Jun 29, 2017
- Add time tracker
- Remove init tests
- Add ENV var to ignore tests
- Update dockerfile
- Add time tracker - Remove init tests - Add ENV var to ignore tests
README.md
Outdated
- `SECRET_KEY` - Secret Key of the server. Defaults to Minio Play Secret Key. | ||
- `ENABLE_HTTPS` - Set to 1 to send HTTPS requests on SSL enabled deployment. Defaults to 0. | ||
- `DATA_DIR` - Data directory for SDK tests. Defaults to data directory created by `build/data/install.sh` script. | ||
- `IGNORE_TESTS` - `;` separated list of SDKs to ignore running. Empty by default. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comma is easier type than ;
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
okay
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BTW there are unexpected commits in this PR can you clean it up and squash them?
8d15a66
to
0fb0dcc
Compare
run.sh
Outdated
# move back to top level directory | ||
cd ../../.. | ||
# move back to top level directory | ||
cd ../../.. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
instead of cd ../../.., it would be better to use cd $root_dir
README.md
Outdated
- `SECRET_KEY` - Secret Key of the server. Defaults to Minio Play Secret Key. | ||
- `ENABLE_HTTPS` - Set to 1 to send HTTPS requests on SSL enabled deployment. Defaults to 0. | ||
- `DATA_DIR` - Data directory for SDK tests. Defaults to data directory created by `build/data/install.sh` script. | ||
- `IGNORE_TESTS` - `,` separated list of SDKs to ignore running. Empty by default. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/,
separated list of SDKs to ignore running./',' separated list of SDKs to skip running.
IGNORE_TESTS could optionally be better named as SKIP_TESTS
An example with this option would be useful as it is not clear here that the sdk naming convention of data directory needs to be followed in the IGNORE_TESTS
0fb0dcc
to
d679bae
Compare
Updated @poornas @harshavardhana |