| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
In run_tests.sh, function init_testr will initialize testr if the
directory .testrepository is not existed. Actually, testr will do
the check before run the test:
In Python package testrepository, setuptools_command.py:Testr.run
68 def run(self):
69 """Set up testr repo, then run testr"""
70 if not os.path.isdir(".testrepository"):
71 self._run_testr("init")
So, init_testr can be removed safely.
Fixes Bug #1220147
Change-Id: Ide99a836cd601453624c7a562b7256c86bd46811
|
| |
|
|
|
|
|
|
|
|
| |
This patch adds output of tests and their results to run_tests.sh.
It also brings back colorizer to the output and updates the test-requirements.
Should align with cinder changes that are in progress
at: https://review.openstack.org/#/c/30291/
Change-Id: I3df6d861f4b4d4355464ceb2d507e69bcf682fbe
|
| |
|
|
| |
Change-Id: I4d6247319d393809b65d05ebbd10620fe224a281
|
| |
|
|
|
|
| |
Fixes bug 1172444.
Change-Id: Ia063ec67de9e6061ce38b948c9eb60b5589c7bb4
|
| |
|
|
|
|
|
|
| |
This just adds -d|--debug option so you can debug
using tools like pdb again and to get extra output
from the tests.
Change-Id: Icebc17a1575e17cfd9597581546dca4732b9a8ef
|
| |
|
|
|
|
|
|
|
|
|
| |
Granted - this takes the test suite from 3 seconds to 1 second... but there
are a bunch of other ways (correctness) that testr is better than nose.
Removed tests/v1/utils - it was not being used anywhere.
Part of blueprint grizzly-testtools.
Change-Id: I54d9a0b7dc22305ec60d779d6f19025a0b5dc785
|
| |
|