mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-21 19:30:03 +02:00
23 lines
550 B
Python
Executable File
23 lines
550 B
Python
Executable File
import pytest
|
|
|
|
from sls_detector import Detector
|
|
|
|
@pytest.fixture
|
|
def detector():
|
|
from sls_detector import Detector
|
|
return Detector()
|
|
|
|
@pytest.fixture
|
|
def eiger():
|
|
from sls_detector import Eiger
|
|
return Eiger()
|
|
|
|
|
|
@pytest.fixture
|
|
def jungfrau():
|
|
from sls_detector import Jungfrau
|
|
return Jungfrau()
|
|
|
|
detector_type = Detector().detector_type
|
|
eigertest = pytest.mark.skipif(detector_type != 'Eiger', reason = 'Only valid for Eiger')
|
|
jungfrautest = pytest.mark.skipif(detector_type != 'Jungfrau', reason = 'Only valid for Jungfrau') |