Specify version number for packages in test-requirements.txt

As you may have noticed, the last month or so of Travis builds have been failing:

```
FAILED (errors=3)
make: *** [functional] Error 1

FAILED (failures=5)
make: *** [unit] Error 1
```

Specifying the version number for the packages in the requirements.txt makes the Travis builds pass again.
This commit is contained in:
Luqmaan
2014-04-04 10:31:13 -05:00
parent 4c2b10925c
commit 2c33dc3d20

View File

@@ -1,12 +1,12 @@
# test runner
coverage
nose
coverage==3.7.1
nose==1.3.0
# testing utilities
mock
sure
mock==1.0.1
sure==1.2.3
# external frameworks tested against
httplib2
requests
tornado
httplib2==0.8
requests==2.2.0
tornado==3.2