This repository has been archived on 2026-05-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GallerySubscriber/backend/tests/test_sanity.py
T

13 lines
210 B
Python

"""Sanity test to verify pytest infrastructure works."""
import asyncio
import pytest
def test_sync_sanity():
assert 1 + 1 == 2
async def test_async_sanity():
await asyncio.sleep(0)
assert True