8000 MAINT: filter out some warnings triggered by nose 1.3.7 + python 3.5b2 by njsmith · Pull Request #6018 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

MAINT: filter out some warnings triggered by nose 1.3.7 + python 3.5b2 #6018

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

Merged
merged 1 commit into from
Jun 25, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
MAINT: filter out some warnings triggered by nose 1.3.7 + python 3.5b2
Filed upstream as:
    nose-devs/nose#929
Not our problem.
  • Loading branch information
njsmith committed Jun 25, 2015
commit e8c412453fa6c95a488e0ddfdb298be520b782d2
6 changes: 6 additions & 0 deletions numpy/testing/nosetester.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,12 @@ def test(self, label='fast', verbose=1, extra_argv=None,
# older versions of scipy to test without a flood of messages.
warnings.filterwarnings("ignore", message=".*boolean negative.*")
warnings.filterwarnings("ignore", message=".*boolean subtract.*")
# Filter out some deprecation warnings inside nose 1.3.7 when run
# on python 3.5b2. See
# https://github.com/nose-devs/nose/issues/929
warnings.filterwarnings("ignore", message=".*getargspec.*",
category=DeprecationWarning,
module="nose\.")

from .noseclasses import NumpyTestProgram

Expand Down
0