diff --git a/.github/workflows/merge_to_master.yml b/.github/workflows/merge_to_master.yml index 8238aa1b058..ed67df085ae 100644 --- a/.github/workflows/merge_to_master.yml +++ b/.github/workflows/merge_to_master.yml @@ -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/codecov-action@v1.0.13 - with: - file: coverage.xml - name: ${{ github.run_id }}-py-${{ matrix.python-version }} - robottelo_container: needs: codechecks diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 0af7e58e5f9..6f4d1e73859 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -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/codecov-action@v1.0.13 - with: - file: coverage.xml - name: ${{ github.run_id }}-py-${{ matrix.python-version }}