aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkoobs <koobs@users.noreply.github.com>2014-02-24 22:13:17 +1100
committerUser Koobs <koobs@9-STABLE-amd64.elysium>2014-02-25 19:35:48 +1100
commit92a4cdbd926a95fc3cfe8428700469938bf3a73f (patch)
treef47ce4e1de04bc9663e0edacc154cbb2605ef4ef
parentff0dd1e000eb4a1552bf59dcdb78db1bd3708721 (diff)
downloadcryptography-92a4cdbd926a95fc3cfe8428700469938bf3a73f.tar.gz
cryptography-92a4cdbd926a95fc3cfe8428700469938bf3a73f.tar.bz2
cryptography-92a4cdbd926a95fc3cfe8428700469938bf3a73f.zip
Add new lines (pep8) and use full sentences
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index ecf0f5ea..48343ca0 100644
--- a/setup.py
+++ b/setup.py
@@ -69,13 +69,14 @@ class CFFIBuild(build):
build.finalize_options(self)
+
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
- #import here, cause outside the eggs aren't loaded
+ # Import here because in module scope the eggs are not loaded.
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)