mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Initial import of setuptools, with integrated tests.
This commit is contained in:
parent
e247e89846
commit
069159b113
39 changed files with 10376 additions and 0 deletions
16
Lib/test/test_setuptools.py
Normal file
16
Lib/test/test_setuptools.py
Normal file
|
@ -0,0 +1,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()
|
Loading…
Add table
Add a link
Reference in a new issue