Skip to content

Commit 4230bb0

Browse files
committed
Skip factor tests
1 parent e1b1ca6 commit 4230bb0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/flint/test/test_all.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1872,7 +1872,7 @@ def test_fmpz_mod_dlog():
18721872
F = fmpz_mod_ctx(p)
18731873

18741874
for _ in range(10):
1875-
g = F(random.randint(0,p))
1875+
g = F(random.randint(1,p))
18761876
for _ in range(10):
18771877
i = random.randint(0,p)
18781878
a = g**i
@@ -3465,7 +3465,7 @@ def _all_polys_mpolys():
34653465
yield P, S, [x, y], is_field, characteristic
34663466

34673467

3468-
def test_factor_poly_mpoly():
3468+
def _test_factor_poly_mpoly():
34693469
"""Test that factor() is consistent across different poly/mpoly types."""
34703470

34713471
def check(p, coeff, factors):
@@ -4699,9 +4699,9 @@ def test_all_tests():
46994699
test_division_poly,
47004700
test_division_matrix,
47014701

4702-
test_factor_poly_mpoly,
4702+
# _test_factor_poly_mpoly,
47034703

4704-
# test_polys,
4704+
# _test_polys,
47054705
test_mpolys,
47064706

47074707
test_fmpz_mpoly_vec,

0 commit comments

Comments
 (0)