diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-25 09:50:31 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-25 09:50:31 -0500 |
commit | 022f37cb1b0cb2e15dc59a723731f5e7f65ea6ce (patch) | |
tree | c6def049d17dfaf657e3f4851d811caf6e1dc2f2 | |
parent | 21f753919f89bd6c7f3333a6b15f0d5515ecde64 (diff) | |
download | external_python_setuptools-022f37cb1b0cb2e15dc59a723731f5e7f65ea6ce.tar.gz external_python_setuptools-022f37cb1b0cb2e15dc59a723731f5e7f65ea6ce.tar.bz2 external_python_setuptools-022f37cb1b0cb2e15dc59a723731f5e7f65ea6ce.zip |
Move api_tests to pkg_resources package. Fixes #312.
-rw-r--r-- | pkg_resources/api_tests.txt (renamed from tests/api_tests.txt) | 0 | ||||
-rw-r--r-- | setuptools/tests/__init__.py | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/tests/api_tests.txt b/pkg_resources/api_tests.txt index 65dba76d..65dba76d 100644 --- a/tests/api_tests.txt +++ b/pkg_resources/api_tests.txt diff --git a/setuptools/tests/__init__.py b/setuptools/tests/__init__.py index d6a4542e..48b29c4c 100644 --- a/setuptools/tests/__init__.py +++ b/setuptools/tests/__init__.py @@ -20,7 +20,7 @@ from setuptools.depends import Require def additional_tests(): suite = unittest.TestSuite(( doctest.DocFileSuite( - os.path.join('tests', 'api_tests.txt'), + 'api_tests.txt', optionflags=doctest.ELLIPSIS, package='pkg_resources', ), )) |