Fix Python 2.6

This commit is contained in:
Ben Firshman 2014-01-06 11:22:46 +00:00
parent 17b9cc430c
commit ff9fa5661d
3 changed files with 4 additions and 3 deletions

View File

@ -12,7 +12,7 @@ install:
- sudo apt-get install -qy slirp lxc lxc-docker=0.7.3 - sudo apt-get install -qy slirp lxc lxc-docker=0.7.3
- git clone git://github.com/jpetazzo/sekexe - git clone git://github.com/jpetazzo/sekexe
- python setup.py install - python setup.py install
- pip install nose==1.3.0 - pip install -r requirements-dev.txt
script: script:
- pwd - pwd

View File

@ -1 +1,2 @@
nose nose==1.3.0
unittest2==0.5.1

View File

@ -1,7 +1,7 @@
from docker import Client from docker import Client
from fig.service import Service from fig.service import Service
from fig.cli.utils import docker_url from fig.cli.utils import docker_url
from unittest import TestCase from unittest2 import TestCase
class DockerClientTestCase(TestCase): class DockerClientTestCase(TestCase):