mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Ok, try components and move test upload directly to step
This commit is contained in:
parent
b17fca4c38
commit
151d5554b8
12
.codecov.yml
12
.codecov.yml
@ -2,14 +2,14 @@ codecov:
|
|||||||
require_ci_to_pass: true
|
require_ci_to_pass: true
|
||||||
# https://docs.codecov.com/docs/flags#recommended-automatic-flag-management
|
# https://docs.codecov.com/docs/flags#recommended-automatic-flag-management
|
||||||
# Require each flag to have 1 upload before notification
|
# Require each flag to have 1 upload before notification
|
||||||
flag_management:
|
component_management:
|
||||||
individual_flags:
|
individual_components:
|
||||||
- name: backend
|
- component_id: backend
|
||||||
paths:
|
paths:
|
||||||
- src/
|
- src/**
|
||||||
- name: frontend
|
- component_id: frontend
|
||||||
paths:
|
paths:
|
||||||
- src-ui/
|
- src-ui/**
|
||||||
# https://docs.codecov.com/docs/pull-request-comments
|
# https://docs.codecov.com/docs/pull-request-comments
|
||||||
# codecov will only comment if coverage changes
|
# codecov will only comment if coverage changes
|
||||||
comment:
|
comment:
|
||||||
|
68
.github/workflows/ci.yml
vendored
68
.github/workflows/ci.yml
vendored
@ -160,25 +160,22 @@ jobs:
|
|||||||
--python ${{ steps.setup-python.outputs.python-version }} \
|
--python ${{ steps.setup-python.outputs.python-version }} \
|
||||||
--dev \
|
--dev \
|
||||||
--frozen \
|
--frozen \
|
||||||
pytest --junitxml=junit-${{ steps.setup-python.outputs.python-version }}.xml
|
pytest
|
||||||
-
|
-
|
||||||
name: Upload backend test results
|
name: Upload backend test results to Codecov
|
||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@v4
|
uses: codecov/test-results-action@v1
|
||||||
with:
|
with:
|
||||||
name: backend-test-results-${{ steps.setup-python.outputs.python-version }}
|
token: ${{ secrets.CODECOV_TOKEN }}
|
||||||
path: junit-${{ steps.setup-python.outputs.python-version }}.xml
|
flags: ${{ matrix.python-version }}
|
||||||
retention-days: 7
|
files: junit.xml
|
||||||
if-no-files-found: error
|
|
||||||
-
|
-
|
||||||
name: Upload backend test coverage
|
name: Upload backend coverage to Codecov
|
||||||
if: ${{ matrix.python-version == env.DEFAULT_PYTHON_VERSION }}
|
uses: codecov/codecov-action@v5
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
with:
|
||||||
name: backend-coverage-report
|
token: ${{ secrets.CODECOV_TOKEN }}
|
||||||
path: coverage.xml
|
flags: ${{ matrix.python-version }}
|
||||||
retention-days: 7
|
files: coverage.xml
|
||||||
if-no-files-found: error
|
|
||||||
-
|
-
|
||||||
name: Stop containers
|
name: Stop containers
|
||||||
if: always()
|
if: always()
|
||||||
@ -186,47 +183,6 @@ jobs:
|
|||||||
docker compose --file ${{ github.workspace }}/docker/compose/docker-compose.ci-test.yml logs
|
docker compose --file ${{ github.workspace }}/docker/compose/docker-compose.ci-test.yml logs
|
||||||
docker compose --file ${{ github.workspace }}/docker/compose/docker-compose.ci-test.yml down
|
docker compose --file ${{ github.workspace }}/docker/compose/docker-compose.ci-test.yml down
|
||||||
|
|
||||||
backend-tests-data-upload:
|
|
||||||
name: "Upload backend tests data to Codecov"
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
if: >-
|
|
||||||
always() &&
|
|
||||||
(needs.tests-backend.result == 'failure' || needs.tests-backend.result == 'success')
|
|
||||||
needs:
|
|
||||||
- tests-backend
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
# Results
|
|
||||||
-
|
|
||||||
name: Download backend test results artifacts
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
path: src/
|
|
||||||
pattern: backend-test-results-*
|
|
||||||
merge-multiple: true
|
|
||||||
-
|
|
||||||
name: Upload backend test results to Codecov
|
|
||||||
uses: codecov/test-results-action@v1
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.CODECOV_TOKEN }}
|
|
||||||
flags: backend
|
|
||||||
directory: src/
|
|
||||||
# Coverage
|
|
||||||
-
|
|
||||||
name: Download backend coverage artifacts
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
name: backend-coverage-report
|
|
||||||
path: src/
|
|
||||||
-
|
|
||||||
name: Upload backend coverage to Codecov
|
|
||||||
uses: codecov/codecov-action@v5
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.CODECOV_TOKEN }}
|
|
||||||
flags: backend
|
|
||||||
directory: src/
|
|
||||||
|
|
||||||
install-frontend-dependencies:
|
install-frontend-dependencies:
|
||||||
name: "Install Frontend Dependencies"
|
name: "Install Frontend Dependencies"
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
@ -303,14 +259,12 @@ jobs:
|
|||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.CODECOV_TOKEN }}
|
token: ${{ secrets.CODECOV_TOKEN }}
|
||||||
flags: frontend
|
|
||||||
directory: src-ui/
|
directory: src-ui/
|
||||||
-
|
-
|
||||||
name: Upload frontend coverage to Codecov
|
name: Upload frontend coverage to Codecov
|
||||||
uses: codecov/codecov-action@v5
|
uses: codecov/codecov-action@v5
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.CODECOV_TOKEN }}
|
token: ${{ secrets.CODECOV_TOKEN }}
|
||||||
flags: frontend
|
|
||||||
directory: src-ui/coverage/
|
directory: src-ui/coverage/
|
||||||
|
|
||||||
frontend-bundle-analysis:
|
frontend-bundle-analysis:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user