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.
10 lines
310 B
10 lines
310 B
import pytest
|
|
|
|
import stormpy._config as config
|
|
|
|
# Skip not supported functionality
|
|
has_dft = config.storm_with_dft
|
|
has_pars = config.storm_with_pars
|
|
|
|
dft = pytest.mark.skipif(not has_dft, reason="No support for DFTs")
|
|
pars = pytest.mark.skipif(not has_pars, reason="No support for parametric model checking")
|