Skip to content

Commit f660e10

Browse files
Temporarily disable test_properties_poly_mpoly
1 parent 1ab75dc commit f660e10

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

src/flint/test/test_all.py

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3508,30 +3508,30 @@ def _all_polys_mpolys():
35083508
yield P, S, [x, y], is_field, characteristic
35093509

35103510

3511-
def test_properties_poly_mpoly():
3512-
"""Test is_zero, is_one etc for all polynomials."""
3513-
for P, S, [x, y], is_field, characteristic in _all_polys_mpolys():
3511+
# def test_properties_poly_mpoly():
3512+
# """Test is_zero, is_one etc for all polynomials."""
3513+
# for P, S, [x, y], is_field, characteristic in _all_polys_mpolys():
35143514

3515-
zero = 0*x
3516-
one = zero + 1
3517-
two = one + 1
3515+
# zero = 0*x
3516+
# one = zero + 1
3517+
# two = one + 1
35183518

3519-
assert zero.is_zero() is True
3520-
assert one.is_zero() is False
3521-
assert two.is_zero() is False
3522-
assert x.is_zero() is False
3519+
# assert zero.is_zero() is True
3520+
# assert one.is_zero() is False
3521+
# assert two.is_zero() is False
3522+
# assert x.is_zero() is False
35233523

3524-
assert zero.is_one() is False
3525-
assert one.is_one() is True
3526-
assert two.is_one() is False
3527-
assert x.is_one() is False
3524+
# assert zero.is_one() is False
3525+
# assert one.is_one() is True
3526+
# assert two.is_one() is False
3527+
# assert x.is_one() is False
35283528

3529-
assert zero.is_constant() is True
3530-
assert one.is_constant() is True
3531-
assert two.is_constant() is True
3532-
assert x.is_constant() is False
3529+
# assert zero.is_constant() is True
3530+
# assert one.is_constant() is True
3531+
# assert two.is_constant() is True
3532+
# assert x.is_constant() is False
35333533

3534-
# is_gen?
3534+
# # is_gen?
35353535

35363536

35373537
def test_factor_poly_mpoly():
@@ -4881,7 +4881,7 @@ def test_use_fmpz_is_probabprime():
48814881
test_division_poly,
48824882
test_division_matrix,
48834883

4884-
test_properties_poly_mpoly,
4884+
# test_properties_poly_mpoly,
48854885
test_factor_poly_mpoly,
48864886
test_division_poly_mpoly,
48874887

0 commit comments

Comments
 (0)