summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_setuptools.py
blob: a988303966507339831d6bff0f8cc7a9fe5012f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""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()