Skip to content

Commit

Permalink
Fix unit test and validate with Python 3.5 as well
Browse files Browse the repository at this point in the history
  • Loading branch information
mpetazzoni committed Sep 7, 2016
1 parent 44ac063 commit 1e36596
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/unittests.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ def test_volumes_from_adds_dependency(self):
c = maestro.Conductor(config)
self.assertEqual(len(c.services), 2)
self.assertEqual(len(c.containers), 2)
self.assertEqual(len(c.services['myservice'].containers), 1)
self.assertEqual(len(list(c.services['myservice'].containers)), 1)
self.assertEqual(c.services['myservice'].dependencies,
set([c.services['mydata']]))
self.assertEqual(c.services['myservice'].requires,
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py33, py34, flake8
envlist = py27, py33, py34, py35, flake8
skip_missing_interpreters = true

[testenv]
Expand Down

0 comments on commit 1e36596

Please sign in to comment.