mirror of https://github.com/saimn/sigal.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.0 KiB
43 lines
1.0 KiB
import os |
|
import shutil |
|
|
|
import blinker |
|
import PIL |
|
import pytest |
|
|
|
from sigal import signals |
|
from sigal.settings import read_settings |
|
|
|
CURRENT_DIR = os.path.abspath(os.path.dirname(__file__)) |
|
BUILD_DIR = os.path.join(CURRENT_DIR, "sample", "_build") |
|
|
|
|
|
@pytest.fixture(scope="session", autouse=True) |
|
def remove_build(): |
|
"""Ensure that build directory does not exists before each test.""" |
|
if os.path.exists(BUILD_DIR): |
|
shutil.rmtree(BUILD_DIR) |
|
|
|
|
|
@pytest.fixture |
|
def settings(): |
|
"""Read the sample config file.""" |
|
return read_settings(os.path.join(CURRENT_DIR, "sample", "sigal.conf.py")) |
|
|
|
|
|
@pytest.fixture() |
|
def disconnect_signals(): |
|
# Reset plugins |
|
yield None |
|
for name in dir(signals): |
|
if not name.startswith("_"): |
|
try: |
|
sig = getattr(signals, name) |
|
if isinstance(sig, blinker.Signal): |
|
sig.receivers.clear() |
|
except Exception: |
|
pass |
|
|
|
|
|
def pytest_report_header(config): |
|
return f"project deps: Pillow-{PIL.__version__}"
|
|
|