You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this example, the test will be parametrized with the values `[1, 2]` and `[3, 4]` for the Paris fork, with values `1` and `3` being assigned to `test_parameter` and `2` and `4` being assigned to `test_parameter_2`. For the Shanghai fork, the test will be parametrized with the values `[4, 5]`, `[5, 6]`, and `[6, 7]`. Therefore, more test cases will be generated for the Shanghai fork.
302
+
303
+
If the parameters that are being parametrized is only a single parameter, the return value of `fn` should be a list of values for that parameter.
304
+
305
+
If the parameters that are being parametrized are multiple, the return value of `fn` should be a list of tuples/lists, where each tuple contains the values for each parameter.
306
+
307
+
The function can also return a list of `pytest.param` objects, which allows for additional markers and test IDs to be added to the test.
308
+
274
309
## Fill/Execute Markers
275
310
276
311
These markers are used to apply different markers to a test depending on whether it is being filled or executed.
0 commit comments