File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
graalpython/lib-python/3/test Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -1842,8 +1842,9 @@ class B:
1842
1842
1843
1843
1844
1844
def load_tests (loader , tests , pattern ):
1845
- from doctest import DocTestSuite
1846
- tests .addTest (DocTestSuite (builtins ))
1845
+ # TODO: revertme once doctest is supported (once io can read text files)
1846
+ # from doctest import DocTestSuite
1847
+ # tests.addTest(DocTestSuite(builtins))
1847
1848
return tests
1848
1849
1849
1850
if __name__ == "__main__" :
Original file line number Diff line number Diff line change @@ -1411,11 +1411,12 @@ def test_fractions(self):
1411
1411
1412
1412
1413
1413
def test_main ():
1414
- from doctest import DocFileSuite
1414
+ # TODO: revertme once doctest is supported (once io can read text files)
1415
+ # from doctest import DocFileSuite
1415
1416
suite = unittest .TestSuite ()
1416
1417
suite .addTest (unittest .makeSuite (MathTests ))
1417
1418
suite .addTest (unittest .makeSuite (IsCloseTests ))
1418
- suite .addTest (DocFileSuite ("ieee754.txt" ))
1419
+ # suite.addTest(DocFileSuite("ieee754.txt"))
1419
1420
run_unittest (suite )
1420
1421
1421
1422
if __name__ == '__main__' :
You can’t perform that action at this time.
0 commit comments