Skip to content

Commit 448ed64

Browse files
committedApr 12, 2023
[Tox] Remove the upload of the code coverage report to Codecov from Tox steps.
Signed-off-by: Giacomo Marciani <[email protected]>
1 parent cbad6b3 commit 448ed64

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed
 

‎awsbatch-cli/tox.ini

-3
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,10 @@ usedevelop =
1515
deps =
1616
-rtests/requirements.txt
1717
pytest-travis-fold
18-
cov: codecov
1918
commands =
2019
nocov: pytest -n auto -l -v --basetemp={envtmpdir} --html=report.html --ignore=src tests/
2120
cov: python setup.py clean --all build_ext --force --inplace
2221
cov: pytest -n auto -l -v --basetemp={envtmpdir} --html=report.html --cov=src --cov-report=xml --cov-append tests/
23-
# Disabling coverage report for awsbatch-cli because it's currently conflicting with pcluster cli report
24-
# cov: codecov -e TOXENV
2522

2623
# Section used to define common variables used by multiple testenvs.
2724
[vars]

‎cli/tox.ini

-2
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,13 @@ allowlist_externals =
1818
deps =
1919
-rtests/requirements.txt
2020
pytest-travis-fold
21-
cov: codecov
2221
extras =
2322
awslambda
2423
commands =
2524
bash ./tests/pcluster/test.sh
2625
nocov: pytest -n auto -l -v --basetemp={envtmpdir} --html=report.html --ignore=src tests/
2726
cov: python setup.py clean --all build_ext --force --inplace
2827
cov: pytest -n auto -l -v --basetemp={envtmpdir} --html=report.html --cov=src --cov-report=xml --cov-append tests/
29-
cov: codecov -e TOXENV
3028

3129
# Section used to define common variables used by multiple testenvs.
3230
[vars]

0 commit comments

Comments
 (0)
Please sign in to comment.