Browse Source

Remove pytest command from setup.py

Peter Justin 4 years ago
parent
commit
180ed73140
1 changed files with 0 additions and 22 deletions
  1. 0 22
      setup.py

+ 0 - 22
setup.py

@@ -2,29 +2,8 @@
 # -*- coding: utf-8 -*-
 # -*- coding: utf-8 -*-
 
 
 import os
 import os
-import sys
 
 
 from setuptools import find_packages, setup
 from setuptools import find_packages, setup
-from setuptools.command.test import test as TestCommand
-
-
-class PyTestCommand(TestCommand):
-    user_options = [("pytest-args=", "a", "Arguments to pass to py.test")]
-
-    def initialize_options(self):
-        TestCommand.initialize_options(self)
-        self.pytest_args = []
-
-    def finalize_options(self):
-        TestCommand.finalize_options(self)
-        self.test_args = []
-        self.test_suite = True
-
-    def run_tests(self):
-        import pytest  # noqa
-
-        errno = pytest.main(self.pytest_args)
-        sys.exit(errno)
 
 
 
 
 def read(*parts):
 def read(*parts):
@@ -144,5 +123,4 @@ setup(
         "Topic :: Internet :: WWW/HTTP :: Dynamic Content",
         "Topic :: Internet :: WWW/HTTP :: Dynamic Content",
         "Topic :: Software Development :: Libraries :: Python Modules",
         "Topic :: Software Development :: Libraries :: Python Modules",
     ],
     ],
-    cmdclass={"test": PyTestCommand},
 )
 )