try stripping the interpreter-specific prefix from our paths

This commit is contained in:
Jean-Paul Calderone 2023-08-09 10:44:17 -04:00
parent 66177ae28e
commit 0995b77020

View File

@ -271,8 +271,10 @@ jobs:
python -m coverage combine python -m coverage combine
# Now coveralls will be able to find the data, so have it do the # Now coveralls will be able to find the data, so have it do the
# upload. # upload. Also, have it strip the system config-specific prefix
python -m coveralls # from all of the source paths.
$prefix = python -c "import sysconfig; print(sysconfig.get_path('purelib'))"
python -m coveralls --basedir $prefix
- "run": - "run":
name: "Convert Result Log" name: "Convert Result Log"