Skip to content

Commit

Permalink
more source install bug fixes and test updates, 0.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Conley committed Mar 2, 2012
1 parent d045d77 commit 9e8bc11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/rosdep2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

from __future__ import print_function

__version__ = '0.8.6'
__version__ = '0.8.7'

import sys

Expand Down
1 change: 0 additions & 1 deletion src/rosdep2/platforms/source.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,5 @@ def install_source(resolved):
finally:
rd_debug("cleaning up tmpdir [%s]"%(tempdir))
shutil.rmtree(tempdir)
os.remove(f[0])


2 changes: 2 additions & 0 deletions test/test_rosdep_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,8 @@ def test_SourceInstaller_resolve():
resolved = installer.resolve(dict(uri=url, md5sum=md5sum_good))

assert type(resolved) == list
assert len(resolved) == 1
resolved = resolved[0]

assert resolved.install_command == rep122_install_command
assert resolved.check_presence_command == rep122_check_presence_command
Expand Down

0 comments on commit 9e8bc11

Please sign in to comment.