🐛(backend) fix inclusion of modules with uv_build

Same fix as https://github.com/suitenumerique/meet/pull/1199 for meet.

Signed-off-by: Maximilian Bosch <maximilian@mbosch.me>
This commit is contained in:
Maximilian Bosch
2026-05-18 07:56:58 +00:00
committed by GitHub
parent 59499a83f9
commit 0f14981d5b
3 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -110,7 +110,7 @@ jobs:
- name: Lint code with ruff
run: uv run ruff check .
- name: Lint code with pylint
run: uv run pylint .
run: uv run pylint impress demo core
test-back:
runs-on: ubuntu-latest
View File
+5
View File
@@ -97,6 +97,11 @@ dev = [
]
[tool.uv.build-backend]
module-name = [
"core",
"demo",
"impress"
]
module-root = ""
source-exclude = [
"**/tests/**",