File tree Expand file tree Collapse file tree 1 file changed +5
-10
lines changed Expand file tree Collapse file tree 1 file changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -981,8 +981,13 @@ def test_arb():
981981 assert not (A ("1.1" ) == A ("1.1" ))
982982
983983if __name__ == "__main__" :
984+ sys .stdout .write ("test_pyflint..." ); test_pyflint (); print ("OK" )
984985 sys .stdout .write ("test_fmpz..." ); test_fmpz (); print ("OK" )
986+ sys .stdout .write ("test_fmpz_factor..." ); test_fmpz_factor (); print ("OK" )
987+ sys .stdout .write ("test_fmpz_functions..." ); test_fmpz_functions (); print ("OK" )
985988 sys .stdout .write ("test_fmpz_poly..." ); test_fmpz_poly (); print ("OK" )
989+ sys .stdout .write ("test_fmpz_poly_factor..." ); test_fmpz_poly_factor (); print ("OK" )
990+ sys .stdout .write ("test_fmpz_poly_functions..." ); test_fmpz_poly_functions (); print ("OK" )
986991 sys .stdout .write ("test_fmpz_mat..." ); test_fmpz_mat (); print ("OK" )
987992 sys .stdout .write ("test_fmpq..." ); test_fmpq (); print ("OK" )
988993 sys .stdout .write ("test_fmpq_poly..." ); test_fmpq_poly (); print ("OK" )
@@ -992,13 +997,3 @@ def test_arb():
992997 sys .stdout .write ("test_nmod_mat..." ); test_nmod_mat (); print ("OK" )
993998 sys .stdout .write ("test_arb.." ); test_arb (); print ("OK" )
994999 print ("OK" )
995- #
996- # The doctests currently fail on Windows so for now we separate them into a
997- # separate test/doctest.py.
998- #
999- #sys.stdout.write("doctests...");
1000- #fail, total = doctest.testmod(flint._flint);
1001- #if fail == 0:
1002- # print("OK")
1003- #else:
1004- # raise AssertionError("%i of %i doctests failed" % (fail, total))
You can’t perform that action at this time.
0 commit comments