MCPcopy Create free account
hub / github.com/apache/arrow / test_cast_float_to_decimal

Function test_cast_float_to_decimal

python/pyarrow/tests/test_compute.py:2408–2414  ·  view source on GitHub ↗
(float_ty, decimal_ty, case_generator)

Source from the content-addressed store, hash-verified

2406 random_float_to_decimal_cast_cases],
2407 ids=['integrals', 'reals', 'random'])
2408def test_cast_float_to_decimal(float_ty, decimal_ty, case_generator):
2409 with decimal.localcontext() as ctx:
2410 for case in case_generator(float_ty, decimal_ty.max_precision):
2411 check_cast_float_to_decimal(
2412 float_ty, case.float_val,
2413 decimal_ty.factory(case.precision, case.scale),
2414 ctx, decimal_ty.max_precision)
2415
2416
2417@pytest.mark.numpy

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected