Files
lollms_hub/tests/test_dummy.py
Robert Marklund bd7edddddb add tox for linting and testing and add ci/cd
Signed-off-by: Robert Marklund <robbelibobban@gmail.com>
2025-11-13 16:02:33 +00:00

21 lines
410 B
Python

"""Dummy test to ensure pytest runs without failures."""
def test_dummy():
"""A dummy test that always passes."""
assert True
def test_imports():
"""Test that main modules can be imported."""
from app.main import app
assert app is not None
def test_config():
"""Test that configuration loads properly."""
from app.core.config import settings
assert settings is not None