Skip to content

Commit

Permalink
Update test dependencies
Browse files Browse the repository at this point in the history
Change-Id: I74e89153b87e4dd725a0b9b6f8b28fcbc2514bb1
  • Loading branch information
9seconds committed May 26, 2017
1 parent 272036c commit 15e88ad
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion backend/admin/decapod_admin/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from decapod_common import config


CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"])
CONTEXT_SETTINGS = {"help_option_names": ["-h", "--help"]}
"""Context settings for the Click."""


Expand Down
8 changes: 4 additions & 4 deletions constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ flake8==3.3.0
flake8-bugbear==17.4.0
flake8-builtins==0.2
flake8-coding==1.3.0
flake8-comprehensions==1.3.0
flake8-comprehensions==1.4.1
flake8-debugger==1.4.0
flake8-import-order==0.12
flake8-mutable==1.2.0
flake8-polyfill==1.0.1
flake8-quotes==0.9.0
flake8-quotes==0.11.0
flake8-string-format==0.2.3
ipaddr==2.1.11
ipdb==0.10.1
Expand All @@ -29,8 +29,8 @@ pep8-naming==0.4.1
pycodestyle==2.3.1
pycparser!=2.15
pygments-style-github==0.4
pytest==3.0.7
pytest-cov==2.4.0
pytest==3.1.0
pytest-cov==2.5.1
pytest-fauxfactory==1.0
pytest-flask==0.10.0
pytest-profiling==1.2.6
Expand Down
2 changes: 1 addition & 1 deletion decapodcli/decapodcli/cloud_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from decapodlib import cloud_config


CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"])
CONTEXT_SETTINGS = {"help_option_names": ["-h", "--help"]}
"""Context settings for the Click."""


Expand Down
2 changes: 1 addition & 1 deletion decapodcli/decapodcli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import decapodlib


CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"])
CONTEXT_SETTINGS = {"help_option_names": ["-h", "--help"]}
"""Context settings for the Click."""


Expand Down

0 comments on commit 15e88ad

Please sign in to comment.