(self, dtype)
| 772 | |
| 773 | @pytest.mark.parametrize("dtype", floating_types + complex_floating_types) |
| 774 | def test_builtin_abs(self, dtype): |
| 775 | if ( |
| 776 | sys.platform == "cygwin" and dtype == np.clongdouble and |
| 777 | ( |
| 778 | _pep440.parse(platform.release().split("-")[0]) |
| 779 | < _pep440.Version("3.3.0") |
| 780 | ) |
| 781 | ): |
| 782 | pytest.xfail( |
| 783 | reason="absl is computed in double precision on cygwin < 3.3" |
| 784 | ) |
| 785 | self._test_abs_func(abs, dtype) |
| 786 | |
| 787 | @pytest.mark.parametrize("dtype", floating_types + complex_floating_types) |
| 788 | def test_numpy_abs(self, dtype): |
nothing calls this directly
no test coverage detected