diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-04 15:24:03 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-04 15:24:03 -0800 |
commit | acac6a6ed57458adc2ecda36c51382660e5269df (patch) | |
tree | 87921733ec4608ec12e34ecf799d4564146710b7 | |
parent | 25693231412dafa00bd7c829d7bc9d63fb876130 (diff) | |
download | cryptography-acac6a6ed57458adc2ecda36c51382660e5269df.tar.gz cryptography-acac6a6ed57458adc2ecda36c51382660e5269df.tar.bz2 cryptography-acac6a6ed57458adc2ecda36c51382660e5269df.zip |
Follow the rules
-rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,7 +15,7 @@ import sys from distutils.command.build import build from setuptools import setup, find_packages -from setuptools.command.test import test as TestCommand +from setuptools.command.test import test base_dir = os.path.dirname(__file__) @@ -71,7 +71,7 @@ class CFFIBuild(build): build.finalize_options(self) -class PyTest(TestCommand): +class PyTest(test): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] |