-
Notifications
You must be signed in to change notification settings - Fork 16
Conversation
.travis.yml
Outdated
@@ -51,6 +51,7 @@ script: | |||
- sed -i.bak '/bears = GitCommitBear/d' .coafile | |||
# Server side tests. | |||
- coverage run $(which behave) ./tests/server.features | |||
- run coala --ci |
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.
run is not a command, it should be coala --ci
, IMO
And please read http://api.coala.io/en/latest/Developers/Newcomers_Guide.html to follow the convention of our community :-) |
I've changed the command, do check if possible |
Thanks for your contribution, your code works for me but the commit message could be better: http://api.coala.io/en/latest/Developers/Writing_Good_Commits.html Please refine the commit message and it will help you to be a good contributor :-) |
I've added a little description for the commit, thanks for the guidance.! |
Great! Could you push your commit to review? |
I'll just close this PR and create a new one with all things done rightly.. Is that okay.? |
There is no need to file a new PR since it does the same thing as this one. |
okay, I'll do that soon.
…On Sun, Dec 31, 2017 at 2:51 PM, Ce Gao ***@***.***> wrote:
There is no need to file a new PR since it does the same thing as this one.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#24 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/Ado9ZnxY0nF7asScBWix8sb_OfH5TPCtks5tF1IwgaJpZM4RPfrG>
.
|
I haven't used git from terminal for this changes.. I've just added the necessary command to my forked repository and made the pull request. |
Well, I think it is better to learn git basics in terminal since it is the basis of our project :-) |
Sure, I'll work on it.
…On Sun, Dec 31, 2017 at 3:14 PM, Ce Gao ***@***.***> wrote:
Well, I think it is better to learn git basics in terminal since it is the
basis of our project :-)
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#24 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/Ado9ZjGageor-5yFHCpC3ffP0dE5frhwks5tF1eIgaJpZM4RPfrG>
.
|
Go ahead and if you have any question you could ask here or our gitter channel https://gitter.im/coala/coala |
Actually, I asked about this issue on gitter firstly but couldn't get the
required response, so I mentioned it directly here. Anyway, I would follow
the instructions and do the same.
…On Sun, Dec 31, 2017 at 3:39 PM, Ce Gao ***@***.***> wrote:
Go ahead and if you have any question you could ask here or our gitter
channel https://gitter.im/coala/coala
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#24 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/Ado9ZqPcgusQbguE9VFy4vzLvriNo3Cjks5tF11sgaJpZM4RPfrG>
.
|
Hi @kiryteo Is there any update? |
@gaocegege I have added the commit for review, please have a look. |
Hi, please squash the commit and repush, then we could merge it. |
@gaocegege Please do have a look.. I think now it should be okay.. |
Hi, @kiryteo There are two commits now and I think we could squash it to one :) |
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.
Squash your commits please, or we close the PR as abandoned.
ping @kiryteo |
travis.yml : Add CI for coala This adds ``coala --ci`` to have CI support for coala Fixes #22
Comment on eff372c. Shortlog of HEAD commit isn't in imperative mood! Bad words are 'Updated' Origin: GitCommitBear, Section: |
@jayvdb I have squashed the commits. |
Please resolve the conflicts 😄 |
@gaocegege so should I remove the '- coverage run -a -m unittest discover -s tests' part. my commit conflicts with that.. |
You could rebase the master locally and use tools to solve them. |
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.
rebase hasnt worked.
I suggest you come onto gitter and ask someone to help you step by step to fix this.
Comment on eff372c. Shortlog of HEAD commit isn't in imperative mood! Bad words are 'Updated' Origin: GitCommitBear, Section: |
Comment on eff372c, file tests/server.features/steps/jsonrpc_steps.py, line 63. The code does not comply to PEP8. Origin: PEP8Bear, Section: The issue can be fixed by applying the following patch: --- a/tmp/tmp362oju65/tests/server.features/steps/jsonrpc_steps.py
+++ b/tmp/tmp362oju65/tests/server.features/steps/jsonrpc_steps.py
@@ -60,7 +60,8 @@
@given('the JSONRPC2Connection instance')
def step_impl(context):
context.f = tempfile.TemporaryFile()
- context.jsonConn = JSONRPC2Connection(conn=TCPReadWriter(context.f, context.f))
+ context.jsonConn = JSONRPC2Connection(
+ conn=TCPReadWriter(context.f, context.f))
@when('I write a request to the JSONRPC2Connection with id') |
Comment on eff372c, file tests/server.features/steps/jsonrpc_steps.py, line 10. E501 line too long (82 > 79 characters) Origin: PycodestyleBear (E501), Section: |
Comment on eff372c, file tests/server.features/steps/jsonrpc_steps.py, line 63. E501 line too long (83 > 79 characters) Origin: PycodestyleBear (E501), Section: |
Comment on eff372c, file tests/server.features/steps/jsonrpc_steps.py, line 10. Line is longer than allowed. (82 > 79) Origin: LineLengthBear, Section: |
Comment on eff372c, file tests/server.features/steps/jsonrpc_steps.py, line 63. Line is longer than allowed. (83 > 79) Origin: LineLengthBear, Section: |
Comment on eff372c. Shortlog of HEAD commit isn't in imperative mood! Bad words are 'Updated' Origin: GitCommitBear, Section: |
Comment on eff372c, file tests/server.features/steps/jsonrpc_steps.py, line 63. The code does not comply to PEP8. Origin: PEP8Bear, Section: The issue can be fixed by applying the following patch: --- a/tmp/tmp362oju65/tests/server.features/steps/jsonrpc_steps.py
+++ b/tmp/tmp362oju65/tests/server.features/steps/jsonrpc_steps.py
@@ -60,7 +60,8 @@
@given('the JSONRPC2Connection instance')
def step_impl(context):
context.f = tempfile.TemporaryFile()
- context.jsonConn = JSONRPC2Connection(conn=TCPReadWriter(context.f, context.f))
+ context.jsonConn = JSONRPC2Connection(
+ conn=TCPReadWriter(context.f, context.f))
@when('I write a request to the JSONRPC2Connection with id') |
Comment on eff372c, file tests/server.features/steps/jsonrpc_steps.py, line 10. E501 line too long (82 > 79 characters) Origin: PycodestyleBear (E501), Section: |
Comment on eff372c, file tests/server.features/steps/jsonrpc_steps.py, line 63. E501 line too long (83 > 79 characters) Origin: PycodestyleBear (E501), Section: |
Comment on eff372c, file tests/server.features/steps/jsonrpc_steps.py, line 10. Line is longer than allowed. (82 > 79) Origin: LineLengthBear, Section: |
Comment on eff372c, file tests/server.features/steps/jsonrpc_steps.py, line 63. Line is longer than allowed. (83 > 79) Origin: LineLengthBear, Section: |
@gaocegege resolved conflict, please have a look. |
Travis tests have failedHey @kiryteo, 3rd Buildcoala --ci
|
PTAL |
Closed due to inactivity. |
Added 'coala --ci' command to travis.yml file, to import coala into Travis CI build.
Fixes #22