aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-01-01 11:25:02 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-01-01 11:25:02 -0500
commit0ede8363da2b989b2b498bf16eb6d30a6ae088ac (patch)
treea8d3e89e65fd35d96ed854307b22320661015fd8
parent64b8fc3f09adb0843bae6f118da8147b8697e4dd (diff)
downloadexternal_python_setuptools-0ede8363da2b989b2b498bf16eb6d30a6ae088ac.tar.gz
external_python_setuptools-0ede8363da2b989b2b498bf16eb6d30a6ae088ac.tar.bz2
external_python_setuptools-0ede8363da2b989b2b498bf16eb6d30a6ae088ac.zip
Remove additional tests, no longer relevant.
-rw-r--r--setuptools/tests/__init__.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/setuptools/tests/__init__.py b/setuptools/tests/__init__.py
index e5d6545a..3aa5525d 100644
--- a/setuptools/tests/__init__.py
+++ b/setuptools/tests/__init__.py
@@ -2,7 +2,6 @@
import sys
import os
import unittest
-import doctest
import distutils.core
import distutils.cmd
from distutils.errors import DistutilsOptionError, DistutilsPlatformError
@@ -16,17 +15,6 @@ import setuptools.depends as dep
from setuptools import Feature
from setuptools.depends import Require
-def additional_tests():
- suite = unittest.TestSuite((
- doctest.DocFileSuite(
- 'api_tests.txt',
- optionflags=doctest.ELLIPSIS, package='pkg_resources',
- ),
- ))
- if sys.platform == 'win32':
- suite.addTest(doctest.DocFileSuite('win_script_wrapper.txt'))
- return suite
-
def makeSetup(**args):
"""Return distribution from 'setup(**args)', without executing commands"""