معرفی شرکت ها


fixtopt-xtofl-0.1.4


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Pytest extension for adding test options
ویژگی مقدار
سیستم عامل -
نام فایل fixtopt-xtofl-0.1.4
نام fixtopt-xtofl
نسخه کتابخانه 0.1.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده xtofl
ایمیل نویسنده xtofl@fixtopt.com
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/fixtopt-xtofl/
مجوز MIT
# fixtopt Extend your pytests with options that can be accessed as test fixtures. Pytest allows declaring command line options for your tests. You specify this in a [test hook](https://docs.pytest.org/en/latest/reference.html#_pytest.hookspec.pytest_addoption) defined in e.g. a file called [`conftest.py`](https://docs.pytest.org/en/latest/writing_plugins.html#conftest-py-local-per-directory-plugins), inside your test directory. Add the options: ```python # conftest.py from fixtopt import Option, register def pytest_addoption(parser): register(globals(), parser, ( Option( name="message", default="message.txt", help="the message file"), Option( name="receiver", default="World", help="the receiver"), )) ``` Import the options in your tests like you would import a fixture: ```python import my_mailclient def test_a_person_receives_a_message(message, receiver): with open(message) as f: assert my_mailclient.receiver(f.read()) == receiver ``` And you can run your tests with the declared options: ```shell pytest . --message /path/to/messagefile --receiver mrs.X ```


نیازمندی

مقدار نام
>=6.2.4,<8 pytest


زبان مورد نیاز

مقدار نام
>=3.8,<4.0 Python


نحوه نصب


نصب پکیج whl fixtopt-xtofl-0.1.4:

    pip install fixtopt-xtofl-0.1.4.whl


نصب پکیج tar.gz fixtopt-xtofl-0.1.4:

    pip install fixtopt-xtofl-0.1.4.tar.gz