-
Notifications
You must be signed in to change notification settings - Fork 119
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
Remove mock from setup.py installation requires #33
Conversation
@@ -13,6 +13,7 @@ python: | |||
|
|||
install: | |||
- pip install -q $TWISTED | |||
- pip install -q mock |
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.
Is it necessary to put it into a new line?
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.
Not at all! Would it be better all on a single line? :)
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.
Since both are test dependencies, I would prefer that I guess but it’s not my project. :)
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.
Either sounds good to me.
Now with 100% less new lines ;) (cc: @hynek ) |
Such compression much effectivity so merge. Wow. |
@@ -12,7 +12,7 @@ python: | |||
- pypy | |||
|
|||
install: | |||
- pip install -q $TWISTED | |||
- pip install -q $TWISTED mock |
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.
FWIW, travis comes with mock installed: http://about.travis-ci.org/docs/user/languages/python/#Pre-installed-packages
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.
Oh, brilliant. I'll fix this then...
Remove mock from setup.py installation requires
moves it to travis' config too, so it can use it for tests
for #32, cc @hynek