Paralllel test issues.

This commit is contained in:
Dries Peeters
2025-10-09 14:08:50 +02:00
parent be06957138
commit f401ebae7f
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -62,11 +62,11 @@ jobs:
run: |
pytest -m smoke -v --tb=short --no-cov
- name: Run unit tests (parallel)
- name: Run unit tests
env:
PYTHONPATH: ${{ github.workspace }}
run: |
pytest -m unit -v -n auto --dist loadfile --no-cov
pytest -m unit -v --no-cov
- name: Run critical integration tests
env:
+1 -1
View File
@@ -321,10 +321,10 @@ def task(app, project, user):
name='Test Task',
description='Test task description',
project_id=project.id,
status='todo',
priority='medium',
created_by=user.id
)
task.status = 'todo' # Set after creation
db.session.add(task)
db.session.commit()