OpenStack tooling for interacting with testr
Go to file
Szymon Datko 96db91056a Fix regex builder
Currently when the blacklist_file and regex string is provided,
the constructed regex looks like '^((?!black1|black2|...).)*$regex'.
This is incorrect, as it will match nothing - some string
is expected after end of the line [denoted as $ in the regex].

The proper construction is like ^(?!black1|black2|...).*(regex).*$
This solves the issue with Tempest, where using blacklist for smoke
tests is not working now, as it leads into the issue described above.

Change-Id: Icdeb3c311f7eb414158aedb4c030494b419211c0
Closes-Bug: #1506215
Closes-Bug: #1595119
Closes-Bug: #1622722
Closes-Bug: #1669455
2017-11-24 16:59:10 +01:00
doc/source Merge "rearrange content to fit the new standard layout" 2017-07-11 21:41:20 +00:00
os_testr Fix regex builder 2017-11-24 16:59:10 +01:00
tools Add Constraints support 2016-12-21 12:08:17 +11:00
.coveragerc Change ignore-errors to ignore_errors 2015-09-21 14:42:01 +00:00
.gitignore Switch to stestr under the covers 2017-08-29 11:03:30 -04:00
.gitreview Initial Cookiecutter Commit. 2015-03-17 14:58:46 -04:00
.mailmap Initial Cookiecutter Commit. 2015-03-17 14:58:46 -04:00
.stestr.conf Switch to stestr under the covers 2017-08-29 11:03:30 -04:00
CONTRIBUTING.rst Initial Cookiecutter Commit. 2015-03-17 14:58:46 -04:00
HACKING.rst Initial Cookiecutter Commit. 2015-03-17 14:58:46 -04:00
LICENSE Initial Cookiecutter Commit. 2015-03-17 14:58:46 -04:00
MANIFEST.in Initial Cookiecutter Commit. 2015-03-17 14:58:46 -04:00
README.rst update doc URL to the new location in the readme 2017-06-29 00:09:05 +08:00
babel.cfg Initial Cookiecutter Commit. 2015-03-17 14:58:46 -04:00
requirements.txt Switch to stestr under the covers 2017-08-29 11:03:30 -04:00
setup.cfg Turn on warning-is-error in sphinx build 2017-06-28 08:58:48 +08:00
setup.py Updated from global requirements 2017-03-02 17:50:34 +00:00
test-requirements.txt Updated from global requirements 2017-11-02 07:47:46 +00:00
tox.ini Fix .testr.conf detection: test path follows discover 2017-09-27 17:17:45 +02:00

README.rst

os-testr

Latest Version

Downloads

A testr wrapper to provide functionality for OpenStack projects.

Features

  • ostestr: a testr wrapper that uses subunit-trace for output and builds some helpful extra functionality around testr
  • subunit-trace: an output filter for a subunit stream which provides useful information about the run
  • subunit2html: generates a test results html page from a subunit stream
  • generate-subunit: generate a subunit stream for a single test