summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_setuptools.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_setuptools.py')
-rw-r--r--Lib/test/test_setuptools.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/Lib/test/test_setuptools.py b/Lib/test/test_setuptools.py
deleted file mode 100644
index a988303..0000000
--- a/Lib/test/test_setuptools.py
+++ /dev/null
@@ -1,16 +0,0 @@
-"""Tests for setuptools.
-
-The tests for setuptools are defined in the setuptools.tests package;
-this runs them from there.
-"""
-
-import test.test_support
-from setuptools.command.test import ScanningLoader
-
-def test_main():
- test.test_support.run_suite(
- ScanningLoader().loadTestsFromName('setuptools.tests')
- )
-
-if __name__ == "__main__":
- test_main()