(self, dtype)
| 785 | |
| 786 | @pytest.mark.parametrize("dtype", floating_types + complex_floating_types) |
| 787 | def test_numpy_abs(self, dtype): |
| 788 | if ( |
| 789 | sys.platform == "cygwin" and dtype == np.clongdouble and |
| 790 | ( |
| 791 | _pep440.parse(platform.release().split("-")[0]) |
| 792 | < _pep440.Version("3.3.0") |
| 793 | ) |
| 794 | ): |
| 795 | pytest.xfail( |
| 796 | reason="absl is computed in double precision on cygwin < 3.3" |
| 797 | ) |
| 798 | self._test_abs_func(np.abs, dtype) |
| 799 | |
| 800 | class TestBitShifts: |
| 801 |
nothing calls this directly
no test coverage detected