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

  1. import pytest
  2. import stormpy._config as config
  3. # Skip not supported functionality
  4. has_dft = config.storm_with_dft
  5. has_pars = config.storm_with_pars
  6. dft = pytest.mark.skipif(not has_dft, reason="No support for DFTs")
  7. pars = pytest.mark.skipif(not has_pars, reason="No support for parametric model checking")