From ff1e64fd4ad32227f34e6ff2210c56e1a3db0d7d Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Sun, 11 Aug 2013 15:33:51 +0200 Subject: drop setup.py test again --- setup.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/setup.py b/setup.py index 2b935340..7fc10b4c 100644 --- a/setup.py +++ b/setup.py @@ -13,20 +13,6 @@ import sys from setuptools import setup -from setuptools.command.test import test as TestCommand - - -class PyTest(TestCommand): - def finalize_options(self): - TestCommand.finalize_options(self) - self.test_args = [] - self.test_suite = True - - def run_tests(self): - import pytest - errno = pytest.main(self.test_args) - sys.exit(errno) - setup( name="cryptography", @@ -36,8 +22,6 @@ setup( url="https://github.com/alex/cryptography", zip_safe=False, # for cffi setup_requires=["cffi>=0.6"], - tests_require=["pytest"], - cmdclass = {"test": PyTest}, classifiers=[ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", -- cgit v1.2.3