diff options
author | Frank Harrison <frank@doublethefish.com> | 2020-04-02 22:32:20 +0100 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2020-04-23 08:47:11 +0200 |
commit | a2d03618d51573273a96150159c9620830f07bd7 (patch) | |
tree | 3db2724e6e53e7f476d8c6e728103780c80c7f42 /tox.ini | |
parent | 0ea3410d670246cb8b961e99ec474f7f7b95f4ce (diff) | |
download | pylint-git-a2d03618d51573273a96150159c9620830f07bd7.tar.gz |
profile| Adds profile-heatmap generation output to tox test-runs
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -53,12 +53,13 @@ deps = mccabe pytest pytest-xdist + pytest-profiling setenv = COVERAGE_FILE = {toxinidir}/.coverage.{envname} commands = - python -Wignore -m coverage run -m pytest {toxinidir}/tests/ {posargs:} + python -Wignore -m coverage run -m pytest --profile-svg {toxinidir}/tests/ {posargs:} ; Transform absolute path to relative path ; for compatibility with coveralls.io and fix 'source not available' error. |