c0a723455a
Our test cases use the `testtools` package which in turn relies on the standard library `unittest` for the basic assert functions. Unfortunately, Python 2.6's `unittest.TestCase` doesn't come with `assertRegexpMatches` which we use in our tests. This caused the py26 Tox environment to fail. Adding `unittest2` (a backport of the 2.7 unittest for earlier versions) and mixing it in with our base TestCase class adds the missing asserts. Change-Id: Ifc69885421f167922b92a37f61dcab3db9665383 Signed-off-by: Tomas Sedovic <tsedovic@redhat.com>
20 lines
322 B
Plaintext
20 lines
322 B
Plaintext
# Packages needed for dev testing
|
|
distribute>=0.6.28
|
|
|
|
# Install bounded pep8/pyflakes first, then let flake8 install
|
|
pep8==1.4.5
|
|
pyflakes==0.7.2
|
|
flake8==2.0
|
|
hacking>=0.5.3,<0.6
|
|
|
|
coverage>=3.6
|
|
discover
|
|
fixtures>=0.3.12
|
|
mox==0.5.3
|
|
MySQL-python
|
|
python-subunit
|
|
sphinx>=1.1.2
|
|
testrepository>=0.0.13
|
|
testtools>=0.9.27
|
|
unittest2
|