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.
2 parents a3a2b19 + acf05e4 commit 6b4ecacCopy full SHA for 6b4ecac
requirements-dev.txt
@@ -8,3 +8,4 @@ pytest-xdist
8
pytest-cov
9
line_profiler
10
isort
11
+codecov-cli
share/ramble/cloud-build/ramble-pr-unit-tests.yaml
@@ -72,6 +72,9 @@ steps:
72
exit $$error
73
id: ramble-unit-tests
74
entrypoint: /bin/bash
75
+ env:
76
+ - 'CODECOV_TOKEN=$_CODECOV_TOKEN'
77
+ - 'PUSH_CODECOV=$_PUSH_CODECOV'
78
substitutions:
79
_SPACK_REF: v0.21.2
80
_PYTHON_VER: 3.11.6
share/ramble/qa/run-unit-tests
@@ -73,6 +73,10 @@ if [ $? != 0 ]; then
ERROR=1
fi
+if [[ "$PUSH_CODECOV" ]]; then
+ echo "Processing codecov upload"
+ codecovcli upload-process
+fi
81
if [ $ERROR == 1 ]; then
82
exit 1
0 commit comments