test(pytest): move pytest fixtures to conftest.py

There are a few benefits for this:

  - All fixtures in one module, so single source of truth.

  - The fixtures are automatically imported and injected by pytest
    so no explicit imports needed for these.

  - Linters won't complain about redefinition of outer scope objects.

Co-authored-by: Jens Troeger <jens.troeger@light-speed.de>
Signed-off-by: Taimoor Zaeem <taimoorzaeem@gmail.com>
This commit is contained in:
Taimoor Zaeem
2025-10-08 13:54:32 -05:00
committed by Steve Chavez
co-authored by Jens Troeger
parent 322216c810
commit c1d9728dc8
7 changed files with 95 additions and 97 deletions
-1
View File
@@ -2,7 +2,6 @@
import pytest
from config import *
from util import *
from postgrest import *