diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2019-01-08 14:22:58 -0500 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2019-01-09 14:51:14 -0500 |
commit | f29a099580cd311517701da4bd125fa83c193f66 (patch) | |
tree | a213ed0d239634fab2c28ea75bbbb2eaa287c1a1 /.coveragerc | |
parent | ed8bc5bc7c0882c67ac925e4b042996f983ba3a5 (diff) | |
download | buildstream-f29a099580cd311517701da4bd125fa83c193f66.tar.gz |
Support running test environments in parallel with `detox`
This patch namespaces the test temp directory and the output
coverage report file with the name of the environment under test,
such that separately run tests do not access the same files.
When running tests without tox, directly through setup.py,
then the tmp directory will still be `./tmp`.
* .gitignore: Added new .coverage-reports/ directory
* .gitlab-ci.yml: Rely on tox to combine and report coverage, only
tell tox about the COVERAGE_PREFIX so that results can be namespaced
by CI job name.
This change also publishes the sources and final combined `.coverage`
file in an output gitlab artifact for inspection, and lists some missing
dependencies to the `coverage` job.
* tox.ini: Add comments and refactor main [testenv] section so that
other environments dont inherit too much unrelated cruft.
Generate the coverate reports in the respective {envtmpdir} so that
all per-process coverage files are prefixed with a full path, ensuring
that concurrent runs don't mix reports and addressing concerns
raised in #844.
Also implemented new `tox -e coverage` environment to combine
any found coverage and print a report.
* .coveragerc: Omit .tox/ directory from coverage stats
Fixes issue #844
Diffstat (limited to '.coveragerc')
-rw-r--r-- | .coveragerc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.coveragerc b/.coveragerc index d81aec1a2..af22a1282 100644 --- a/.coveragerc +++ b/.coveragerc @@ -9,6 +9,8 @@ omit = # Omit generated code */buildstream/_protos/* */.eggs/* + # Omit .tox directory + */.tox/* [report] show_missing = True |