mirror of
https://github.com/echemdata/galvani.git
synced 2025-12-14 01:15:34 +00:00
12 lines
218 B
Python
12 lines
218 B
Python
"""Helpers for pytest tests."""
|
|
|
|
import os
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(scope='session')
|
|
def testdata_dir():
|
|
"""Path to the testdata directory."""
|
|
return os.path.join(os.path.dirname(__file__), 'testdata')
|