Merge branch 'dev' into dependabot/npm_and_yarn/src-ui/dev/frontend-angular-dependencies-44dea8b7ac

This commit is contained in:
shamoon 2025-03-04 11:01:48 -08:00 committed by GitHub
commit b21c403e66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 15 additions and 3 deletions

View File

@ -167,7 +167,9 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: backend-coverage-report
path: coverage.xml
path: |
coverage.xml
junit.xml
retention-days: 7
if-no-files-found: error
-
@ -315,6 +317,14 @@ jobs:
# future expansion
flags: backend
directory: src/
-
name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: backend
directory: src/
-
name: Use Node.js 20
uses: actions/setup-node@v4

View File

@ -329,6 +329,8 @@ addopts = [
"--maxprocesses=16",
"--quiet",
"--durations=50",
"--junitxml=junit.xml",
"-o junit_family=legacy",
]
norecursedirs = [ "src/locale/", ".venv/", "src-ui/" ]

View File

@ -632,7 +632,7 @@ def send_webhook(
else:
httpx.post(
url,
data=data,
content=data,
files=files,
headers=headers,
).raise_for_status()

View File

@ -2603,7 +2603,7 @@ class TestWorkflows(
mock_post.assert_called_once_with(
"http://paperless-ngx.com",
data="Test message",
content="Test message",
headers={},
files=None,
)