Привет всем, кто пытается сделать интеграцию в тестовом рельсе с помощью pytest-pytestrail, но когда я запускаю свой набор тестов, он почему-то отменяет выбор моих тестовых наборов и возвращает набор тестов как "Пустой набор".
pytest. ini
[pytest]
python_files = test_*.py *_test.py Test*.py
python_classes = Test*
python_functions = test_* *_test
addopts = --show-capture=stdout --tb=stdout -p no:warnings
pytestrail = True
pytestrail-url = https://my.testrail.com/
pytestrail-email = user
pytestrail-password = qwerty
pytestrail-test-run = 1
pytestrail-no-ssl-check = True
test_mytest.py
class TestMyExample:
@pytestrail.case('C1')
def test_example(self):
assert 1 == 1
Спасибо.