forked from boto/boto
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This runs the unittests across python 2.6 and 2.7 I also updated the requirements file to install tox, and pinned the requirements to specific versions.
- Loading branch information
James Saryerwinnie
committed
Jun 14, 2012
1 parent
3db8668
commit 4b9ade5
Showing
3 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,5 @@ dist/ | |
MANIFEST | ||
.DS_Store | ||
.idea | ||
.tox | ||
.coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
requests | ||
mock | ||
mock==0.8.0 | ||
nose==1.1.2 | ||
M2Crypto==0.21.1 | ||
requests==0.13.1 | ||
tox==1.4 | ||
Sphinx==1.1.3 | ||
simplejson==2.5.2 | ||
argparse==1.2.1 | ||
unittest2==0.5.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[tox] | ||
envlist = py26,py27 | ||
|
||
|
||
[testenv] | ||
commands = | ||
pip install -qr requirements.txt | ||
python tests/test.py tests/unit |