-
Notifications
You must be signed in to change notification settings - Fork 887
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
Pserve --reload does not keep worker arguments. Fixes #2961 #2962
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,9 +65,10 @@ | |
] | ||
|
||
testing_extras = tests_require + [ | ||
'mock', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm a -1 on this, we use dummy objects everywhere else. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. By the way this dependencies are only installed when you run tests which is not something you do when you use the project. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure, I understand that. |
||
'nose', | ||
'coverage', | ||
'virtualenv', # for scaffolding tests | ||
'virtualenv', # for scaffolding tests | ||
] | ||
|
||
setup(name='pyramid', | ||
|
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.
We don't currently use mock in the the Pyramid tests, instead we create dummy objects that have just the functionality required.
I don't think it is a great idea to add yet another dependency...