Prototype implementation

This commit is contained in:
tegwick 2026-05-08 14:26:48 +02:00
parent 315143a6fc
commit 14b0bc6d01
160 changed files with 5731 additions and 42 deletions

10
conftest.py Normal file
View file

@ -0,0 +1,10 @@
import pytest
@pytest.fixture
def mitarbeiter(db):
from vergabe_teilnahme.apps.accounts.models import Mitarbeiter
return Mitarbeiter.objects.create_user(
username='testuser', password='testpass', first_name='Test', last_name='User'
)