fix: some minor fixes
Some checks failed
Tests / test (3.13) (push) Failing after 26s
Tests / lint (push) Failing after 16s
Tests / hacs (push) Failing after 30s

Signed-off-by: Rafal Zielinski <sq4ind@gmail.com>
This commit is contained in:
2025-10-02 16:09:10 +01:00
parent bd6a73fa15
commit e23d60d895
10 changed files with 185 additions and 22 deletions

17
tests/test_simple.py Normal file
View File

@@ -0,0 +1,17 @@
"""Simple test to verify pytest configuration."""
import pytest
@pytest.mark.asyncio
async def test_async_works():
"""Test that async functions work with pytest."""
async def simple_async_function():
return True
result = await simple_async_function()
assert result is True
def test_sync_works():
"""Test that sync functions work with pytest."""
assert True is True