forked from SatelliteQE/robottelo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There is very little value for these reports in a project like robottelo They detract from the overall effect of a PR's other checks With that in mind, I'm removing code coverage checks with this PR until further notice.
- Loading branch information
1 parent
6772c9c
commit 22ab55c
Showing
2 changed files
with
0 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,9 +49,6 @@ jobs: | |
pytest --collect-only --disable-pytest-warnings -m pre_upgrade tests/upgrades/ | ||
pytest --collect-only --disable-pytest-warnings -m post_upgrade tests/upgrades/ | ||
- name: Test Robottelo Coverage | ||
run: pytest --cov --cov-config=.coveragerc --cov-report=xml tests/robottelo | ||
|
||
- name: Make Docs | ||
run: | | ||
make test-docstrings | ||
|
@@ -61,12 +58,6 @@ jobs: | |
if: failure() | ||
run: git diff | ||
|
||
- name: Upload Codecov Coverage | ||
uses: codecov/[email protected] | ||
with: | ||
file: coverage.xml | ||
name: ${{ github.run_id }}-py-${{ matrix.python-version }} | ||
|
||
|
||
robottelo_container: | ||
needs: codechecks | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,9 +54,6 @@ jobs: | |
pytest --collect-only --disable-pytest-warnings -n 2 -m pre_upgrade tests/upgrades/ | ||
pytest --collect-only --disable-pytest-warnings -n 2 -m post_upgrade tests/upgrades/ | ||
- name: Test Robottelo Coverage | ||
run: pytest --cov --cov-config=.coveragerc --cov-report=xml tests/robottelo | ||
|
||
- name: Make Docs | ||
run: | | ||
make test-docstrings | ||
|
@@ -65,9 +62,3 @@ jobs: | |
- name: Analysis (git diff) | ||
if: failure() | ||
run: git diff | ||
|
||
- name: Upload Codecov Coverage | ||
uses: codecov/[email protected] | ||
with: | ||
file: coverage.xml | ||
name: ${{ github.run_id }}-py-${{ matrix.python-version }} |