summaryrefslogtreecommitdiff
path: root/setuptools/_distutils/tests/test_check.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/_distutils/tests/test_check.py')
-rw-r--r--setuptools/_distutils/tests/test_check.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/setuptools/_distutils/tests/test_check.py b/setuptools/_distutils/tests/test_check.py
index 424c5e08..21035f5d 100644
--- a/setuptools/_distutils/tests/test_check.py
+++ b/setuptools/_distutils/tests/test_check.py
@@ -2,7 +2,6 @@
import os
import textwrap
import unittest
-from test.support import run_unittest
from distutils.command.check import check, HAS_DOCUTILS
from distutils.tests import support
@@ -194,16 +193,6 @@ class CheckTestCase(support.LoggingSilencer, support.TempdirManager, unittest.Te
)
def test_check_all(self):
-
- metadata = {'url': 'xxx', 'author': 'xxx'}
self.assertRaises(
DistutilsSetupError, self._run, {}, **{'strict': 1, 'restructuredtext': 1}
)
-
-
-def test_suite():
- return unittest.TestLoader().loadTestsFromTestCase(CheckTestCase)
-
-
-if __name__ == "__main__":
- run_unittest(test_suite())