File tree Expand file tree Collapse file tree 4 files changed +11
-1
lines changed Expand file tree Collapse file tree 4 files changed +11
-1
lines changed Original file line number Diff line number Diff line change
1
+ import os
2
+ from test .support import load_package_tests
3
+
4
+ def load_tests (* args ):
5
+ return load_package_tests (os .path .dirname (__file__ ), * args )
Original file line number Diff line number Diff line change
1
+ from . import load_tests
2
+ import unittest
3
+
4
+ unittest .main ()
Original file line number Diff line number Diff line change 5
5
# * test_memoryio - tests BytesIO and StringIO
6
6
# * test_fileio - tests FileIO
7
7
# * test_file - tests the file interface
8
- # * test_io - tests everything else in the io module
8
+ # * test_io.test_general - tests everything else in the io module
9
9
# * test_univnewlines - tests universal newline support
10
10
# * test_largefile - tests operations on a file greater than 2**32 bytes
11
11
# (only enabled with -ulargefile)
Original file line number Diff line number Diff line change @@ -2670,6 +2670,7 @@ TESTSUBDIRS= idlelib/idle_test \
2670
2670
test/test_importlib/source \
2671
2671
test/test_inspect \
2672
2672
test/test_interpreters \
2673
+ test/test_io \
2673
2674
test/test_json \
2674
2675
test/test_module \
2675
2676
test/test_multiprocessing_fork \
You can’t perform that action at this time.
0 commit comments