10000 TST: Ignore exp FP exceptions test for glibc ver < 2.17 by r-devulap · Pull Request #19209 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

TST: Ignore exp FP exceptions test for glibc ver < 2.17 #19209

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 5 commits into from
Jun 12, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
TST: 2 blank lines after class def
  • Loading branch information
Raghuveer Devulapalli committed Jun 11, 2021
commit 1c7d5db66e0b80750e246d7bbfbd77de8c8ae524
1 change: 1 addition & 0 deletions numpy/core/tests/test_umath.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def get_glibc_version():

return ver


glibcver = get_glibc_version()
glibc_newerthan_2_17 = pytest.mark.xfail(
glibcver != '0.0' and glibcver < '2.17',
Expand Down
0