Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test travis on python 2.6 #17

Merged
merged 4 commits into from Nov 26, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
@@ -1,5 +1,6 @@
language: python
python:
- "2.6"
- "2.7"

install:
Expand Down
6 changes: 5 additions & 1 deletion auslib/test/blobs/test_apprelease.py
@@ -1,4 +1,8 @@
from collections import OrderedDict
try:
from collections import OrderedDict
except ImportError:
# so you're in python <2.7
from ordereddict import OrderedDict
import mock
import unittest
from xml.dom import minidom
Expand Down
1 change: 1 addition & 0 deletions requirements/dev.txt
Expand Up @@ -7,3 +7,4 @@ coverage
certifi
requests==0.10.8
pyflakes
ordereddict==1.1