We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4de5608 commit 39b75e1Copy full SHA for 39b75e1
.github/workflows/ci.yml
@@ -59,3 +59,12 @@ jobs:
59
git config --global --add init.defaultBranch main
60
git config --global --add advice.detachedHead true
61
${{ startsWith(matrix.os, 'windows') && 'set PYTHONPATH=%cd% &&' || 'PYTHONPATH=`pwd`' }} pytest -s -v test
62
+
63
+ codecov:
64
+ needs: build
65
+ uses: ros-infrastructure/ci/.github/workflows/pytest.yaml@main
66
+ with:
67
+ codecov: true
68
+ matrix-filter: del(.matrix.os[] | select(. != "ubuntu-latest")) | del(.matrix.python[] | select(. != "3.12"))
69
+ secrets:
70
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
setup.cfg
@@ -0,0 +1,6 @@
1
+[coverage:run]
2
+source = vcs2l
3
+omit =
4
+ */test/*
5
+ */venv/*
6
+ */test_workspace/*
0 commit comments