<div>Hello,</div><div> </div><div>I've run into issue with with coverage during combining reports step.</div><div> </div><div>My code base supports multiple operating system, so in order to get full coverage results, I need to take multiple .coverage files and combine them into single one, and then show the report.</div><div> </div><div>I use tox to run tests, so coverage finds source in the <span style="font-family:courier new,monospace;">$(pwd)/.tox/pyXX/lib/python-X.X/site-packages</span>, but when I run coverage combine and report the sources are located in the <span style="font-family:courier new,monospace;">$(pwd}/src</span>. I included both paths into my .coveragerc (see below).</div><div> </div><div>When I run <span style="font-family:courier new,monospace;">coverage report --show-missing</span>, I get bunch of errors, that it can't find sources like one below:</div><div> </div><div><div><span style="font-family:courier new,monospace;">/usr/home/gitlab-runner/builds/XXXXXXXX/0/b/project/src/project/zone2hosts.py   NoSource: No source for code: '/usr/home/gitlab-runner/builds/XXXXXXXX/0/b/project/src/project/zone2hosts.py'.</span></div><div><span style="font-family:courier new,monospace;">Aborting report output, consider using -i.</span></div><div> </div>I use gitlab-runner to run tests, and paths are different between runners. In runner above, <span style="font-family:courier new,monospace;">$(pwd)</span> part is <span style="font-family:courier new,monospace;">/home/gitlab_ci_multi_runner/builds/XXXXXXXX/0/b/src</span>, but in runner where I combine reports <span style="font-family:courier new,monospace;">$(pwd)</span> part is<span style="font-family:courier new,monospace;"> /root/src</span>. I tried -i option, as suggested by error message, but then I get blank report.</div><div> </div><div>How to make this work? What am I missing?</div><div> </div><div>my .coveragerc</div><div> </div><div><span style="font-family:courier new,monospace;">[paths]</span></div><div><span style="font-family:courier new,monospace;">source =</span></div><div><span style="font-family:courier new,monospace;">    src</span></div><div><span style="font-family:courier new,monospace;">    .tox/*/lib/python*/site-packages</span></div><div> </div><div> </div><div>Thanks,</div><div>-sashk</div><div> </div>