blob: a988303966507339831d6bff0f8cc7a9fe5012f4 [file] [log] [blame]
Phillip J. Eby069159b2006-04-18 04:05:34 +00001"""Tests for setuptools.
2
3The tests for setuptools are defined in the setuptools.tests package;
4this runs them from there.
5"""
6
7import test.test_support
8from setuptools.command.test import ScanningLoader
9
10def test_main():
11 test.test_support.run_suite(
12 ScanningLoader().loadTestsFromName('setuptools.tests')
13 )
14
15if __name__ == "__main__":
16 test_main()