Skip to content
Snippets Groups Projects
conftest.py 193 B
Newer Older
kaiyou's avatar
kaiyou committed
import pytest


@pytest.fixture
def username():
    """Default username for tests"""
    return "admin"

@pytest.fixture
def password():
    """Default password for tests"""
    return "admin"