Skip to content

Instantly share code, notes, and snippets.

View edpyt's full-sized avatar
🦍
todo!();

edpyt

🦍
todo!();
View GitHub Profile
@edpyt
edpyt / shutdown_timer.md
Last active December 23, 2024 04:12
Shutdown timer (systemd)
https://github.com/helix-editor/helix/discussions/5912#discussioncomment-4947799
@edpyt
edpyt / conftest.py
Last active May 2, 2024 19:07
Strange error. pytest + nats.py
from typing import AsyncGenerator, Generator
import nats
import pytest
import pytest_asyncio
from testcontainers.nats import NatsContainer
@pytest.fixture(name="nats_container", scope="session")
@edpyt
edpyt / conftest.py
Last active January 25, 2025 15:10
SQLAlchemy, PyTest nested transaction mode
from typing import Generator
import pytest
from sqlalchemy import Engine, create_engine
from sqlalchemy.orm import Session, sessionmaker
from .models import Base
@pytest.fixture(name="engine", scope="session")