интеграция pytest testrail с параметром - PullRequest
0 голосов
/ 13 марта 2019

Я хочу добавить декоратор @ pytest.mark.parametrize ('my_var', MY_VAR). Как я могу это сделать?

import pytest
from pytest_testrail.plugin import pytestrail

@pytestrail.case('C3663', 'C3664', 'C3665')
def test_rails_integration():
    """
    Function to test test rails integration
    :return:
    """

    assert True, "Test Case Passed !!"
...