-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
do not require nose for testing #5826
Conversation
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.
These changes look good - thank you! Only had the one comment regarding the print statements.
notebook/tests/test_paths.py
Outdated
@@ -16,7 +15,9 @@ def test_path_regex(): | |||
'/x/foo/bar', | |||
'/x/foo/bar.txt', | |||
): | |||
assert_regex(path, path_pat) | |||
print(type(path)) | |||
print(type(path_pat)) |
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 should probably remove these print
statements.
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.
Thanks @pgajdos.
Note that nose appears still required via https://github.com/ipython/ipython_genutils/blob/fbcb174d06d6df1f8633014dd80fad8c45533c2e/ipython_genutils/testing/decorators.py#L162 |
Good catch @hroncok - thanks. Looks like the updates to At any rate, PR forthcoming to address the remaining references that pull in |
AFAIK nose comes pre-installed in Travis Python environments (I guess historically this was a good idea, not sure). |
nose
is deprecated and will not work in future python versions.