mirror of https://github.com/saimn/sigal.git
3 changed files with 16 additions and 16 deletions
@ -0,0 +1,14 @@
|
||||
# -*- coding: utf-8 -*- |
||||
|
||||
import os |
||||
import pytest |
||||
|
||||
from sigal.settings import read_settings |
||||
|
||||
CURRENT_DIR = os.path.abspath(os.path.dirname(__file__)) |
||||
|
||||
|
||||
@pytest.fixture(scope='session') |
||||
def settings(): |
||||
"""Read the sample config file.""" |
||||
return read_settings(os.path.join(CURRENT_DIR, 'sample', 'sigal.conf.py')) |
||||
Loading…
Reference in new issue