-
Notifications
You must be signed in to change notification settings - Fork 20
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
enabling dynamo maven integration problem #376
Comments
I'll ask someone to take care of this task soon |
thanks for reporting! I topped your account for 15 mins, transaction 46199261 |
@rfqu this task is for you, keep these principles in mind, and don't hesitate to ask any technical questions |
Hello, I am a newcomer to this project. First, I'd like to be told how to reproduce the failure. I've already cloned this workspace, imported maven project into Eclipse, and run all the tests. No one test failed. |
@rfqu You have to go to to run IT tests you need maven to go into integration-test phase and run failsafe, maven command above doeas that together with other phases (compilation, normal unit tests etc.) |
The reason the test fails is because following lines: System.getProperty("dynamo.key"), give nulls, because my machine is not configured to access DynamoDB. Is there any documentation to read about this? |
@rfqu have a look at project that uses jcabi-dyname: https://github.com/yegor256/rultor/blob/master/src/test/java/com/rultor/dynamo/DyTalksITCase.java I think that instead of System.getProperty it should use:
This gets the configuration from You shouldn't need real amazon data (key/secret) as the project has DynamoDBLocal in the integration tests (see http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tools.DynamoDBLocal.html) so everything should work locally without touching AWS. |
@krzyk it works, but another error occured: It will take some time for me to understand what's going on. |
@rfqu great, if you think this issue is a bigger task that will not fit in 30 mins then add |
@rfqu No, you should remove the previous todo and create a new one and describe the new problem - this time it is more specific. I assume that you have made some changes to the code that made the new exception to show. |
@rfqu You are right, I forgot that this issue is from a bug report. To close this issue you would need to submit a PR with the changes that you made in the code that solve the issue from the report. Even if it was only changing to use |
PR created: #394 |
@rfqu Just a hint that travis build failed in this PR, take a look at the logs. You probably didn't run it with |
@krzyk yes my fault. I updated the branch for pull request. Should I do anything with the pull request? Where can I see build logs? |
@rfqu At the bottom of the pull request you can see a text containing "Travis" it will be either red or green and a link with "Details" is in the same line, there you can see the build logs. |
@rfqu the task is your hands for the last 12 days.. keep in mind that if it's not closed in the next 40 hours, it will be re-assigned to someone else, see No Obligations principle |
@rfqu Just noticed that the PR was merged, so I'll close this task, thanks. |
@rfqu 30 mins sent to your balance (ID |
When I enable a test in
DyBaseITCase
and run maven I get:So it looks like it fails to create region for integration test (null problem).
I don't think it should complain before even creating
DyBase
.The text was updated successfully, but these errors were encountered: