diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2018-09-17 19:40:08 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2018-09-17 19:40:08 -0700 |
commit | f4664257250371bba7cf0c330a43b95570323bef (patch) | |
tree | f465634d5139ba64f8aee145eafb7ea0c41131ff | |
parent | 915b4551fe8b7c422e5fba1166ac8c8a4cc5b353 (diff) |
Minor cleanup
-rw-r--r-- | dev-requirements.txt | 2 | ||||
-rw-r--r-- | tasks.py | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/dev-requirements.txt b/dev-requirements.txt index 71f85faf..7f2ab0b9 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -19,5 +19,3 @@ releases>=1.5,<2.0 semantic_version>=2.4,<2.5 wheel==0.24 twine==1.11.0 - - @@ -40,7 +40,7 @@ def test( # running headless? Probably? if color: opts += " --color=yes" - opts += " --capture={0}".format(capture) + opts += " --capture={}".format(capture) if "-m" not in opts and not include_slow: opts += " -m 'not slow'" if k is not None and not ("-k" in opts if opts else False): |