Skip to content

Commit

Permalink
Merge branch 'release_16.01' into release_16.04
Browse files Browse the repository at this point in the history
Conflicts:
	.ci/flake8_blacklist.txt
	tox.ini
  • Loading branch information
nsoranzo committed Aug 10, 2016
2 parents a7664f0 + 68f718d commit f2f62f3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .ci/flake8_blacklist.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.venv/
.tox/
eggs/
client/
database/
doc/patch.py
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -418,9 +418,9 @@ def handle_complex_repository_dependency_for_package( self, elem, package_name,
dependent_install_dir,
tool_dependency_type='package' )
if not can_install_tool_dependency:
log.debug( "Tool dependency %s version %s cannot be installed (it was probably previously installed), " %
( str( tool_dependency.name, str( tool_dependency.version ) ) ) )
log.debug( "so appending it to the list of handled tool dependencies." )
log.debug( "Tool dependency %s version %s cannot be installed (it was probably previously installed), "
"so appending it to the list of handled tool dependencies.",
str( tool_dependency.name), str( tool_dependency.version ) )
handled_tool_dependencies.append( tool_dependency )
else:
can_install_tool_dependency = True
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ skipsdist = True
[testenv:py27-lint]
commands = bash .ci/flake8_wrapper.sh
whitelist_externals = bash
deps = flake8
deps = flake8==3.0.4

[testenv:py34-lint]
commands = bash .ci/flake8_py3_wrapper.sh
whitelist_externals = bash
deps = flake8
deps = flake8==3.0.4


[testenv:py27-unit]
Expand Down

0 comments on commit f2f62f3

Please sign in to comment.