mirror of
https://github.com/element-hq/ess-helm.git
synced 2026-01-11 20:06:45 +00:00
Merge pull request #966 from element-hq/gaelg/max-asyncio-tasks
Some checks failed
Scripts linting / python (push) Has been cancelled
Scripts linting / cspell (push) Has been cancelled
GitHub Actions linting / action-validator (push) Has been cancelled
GitHub Actions linting / actionlint (push) Has been cancelled
GitHub Actions linting / pinned-actions (push) Has been cancelled
GitHub Actions linting / explicit-permissions (push) Has been cancelled
Artifact Hub Metadata / artifact-hub (push) Has been cancelled
Changelog / check-newsfile (push) Has been cancelled
Changelog / preview-changelog (push) Has been cancelled
matrix-tools linting and building / gofmt (push) Has been cancelled
matrix-tools linting and building / tests (push) Has been cancelled
Scripts linting / shellcheck (push) Has been cancelled
Helm Chart Building tests / no-changes-after-building (push) Has been cancelled
Helm Chart Building tests / helm-lint (push) Has been cancelled
Licensing & Copyright checks / reuse-licensing-and-copyright-checks (push) Has been cancelled
Run PyTest tests - Integration and Manifests / pytest-setup (push) Has been cancelled
Helm Chart packaging and releasing / helm-package (push) Has been cancelled
matrix-tools linting and building / Build matrix-tools container image (push) Has been cancelled
Run PyTest tests - Integration and Manifests / pytest-integration (push) Has been cancelled
Run PyTest tests - Integration and Manifests / pytest-manifests (push) Has been cancelled
Helm Chart packaging and releasing / release (push) Has been cancelled
Some checks failed
Scripts linting / python (push) Has been cancelled
Scripts linting / cspell (push) Has been cancelled
GitHub Actions linting / action-validator (push) Has been cancelled
GitHub Actions linting / actionlint (push) Has been cancelled
GitHub Actions linting / pinned-actions (push) Has been cancelled
GitHub Actions linting / explicit-permissions (push) Has been cancelled
Artifact Hub Metadata / artifact-hub (push) Has been cancelled
Changelog / check-newsfile (push) Has been cancelled
Changelog / preview-changelog (push) Has been cancelled
matrix-tools linting and building / gofmt (push) Has been cancelled
matrix-tools linting and building / tests (push) Has been cancelled
Scripts linting / shellcheck (push) Has been cancelled
Helm Chart Building tests / no-changes-after-building (push) Has been cancelled
Helm Chart Building tests / helm-lint (push) Has been cancelled
Licensing & Copyright checks / reuse-licensing-and-copyright-checks (push) Has been cancelled
Run PyTest tests - Integration and Manifests / pytest-setup (push) Has been cancelled
Helm Chart packaging and releasing / helm-package (push) Has been cancelled
matrix-tools linting and building / Build matrix-tools container image (push) Has been cancelled
Run PyTest tests - Integration and Manifests / pytest-integration (push) Has been cancelled
Run PyTest tests - Integration and Manifests / pytest-manifests (push) Has been cancelled
Helm Chart packaging and releasing / release (push) Has been cancelled
pytest: set a maximum number of cooperative asyncio tasks.
This commit is contained in:
commit
8d1ce7a3af
4 changed files with 4 additions and 1 deletions
1
.github/element-docs-words.txt
vendored
1
.github/element-docs-words.txt
vendored
|
|
@ -3,6 +3,7 @@ ansible
|
|||
Ansible
|
||||
appservices
|
||||
Artifacthub
|
||||
asyncio
|
||||
checkov
|
||||
deployables
|
||||
dialog
|
||||
|
|
|
|||
2
.github/element-docs-words.txt.license
vendored
2
.github/element-docs-words.txt.license
vendored
|
|
@ -1,4 +1,4 @@
|
|||
Copyright 2025 New Vector Ltd
|
||||
Copyright 2025 Element Creations Ltd
|
||||
Copyright 2025-2026 Element Creations Ltd
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
|
|
|||
1
newsfragments/966.internal.md
Normal file
1
newsfragments/966.internal.md
Normal file
|
|
@ -0,0 +1 @@
|
|||
CI: Set a maximum number of cooperative asyncio tasks.
|
||||
|
|
@ -51,6 +51,7 @@ build-backend = "poetry.core.masonry.api"
|
|||
[tool.pytest.ini_options]
|
||||
# we use asyncio-cooperative
|
||||
addopts = "-p no:asyncio --strict-markers"
|
||||
max_asyncio_tasks = 32
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 120
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue