I have multiple tests which would work on different versions of my program.
For example testA is working only for versions 2,3,4 and not 5 and later. the other test is working for the test from version 4 and later. based on the pytest documentation, I can create a marker similar to below:
# content of test_mymodule.py
import mymodule
minversion3 = pytest.mark.skipif(
myprogram.__versioninfo__ < 3, reason="at least version 3 is required"
)
@minversion3
def test_function():
...
minversion3 marks the tests to be run provided that program has at least version 3. I would like to parametrize it so that I can have something like this:
@minmaxversion(3.2, 6.1)
def test_function():
...
so that this test is only working for programs with version minimum 3.2 and maximum 6.1.
You can wrap
pytest.mark.skipif
in a parametrized decorator to do what you want. The following code providesminversion(n)
andmaxversion(n)
decorators that do exactly what you want; you can combine the two (seetest_function_2
) to set a version range, or you could of course write a newminmaxversion
decoration following the same pattern:With
program_version = 6
, running the above code yields: