Skip to content

fix typo in command line options #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ reporting:
--httpdbg-no-clean do not clean the httpdbg directory

--httpdbg-allure save HTTP(S) traces into the allure report
--httpdbg-no-headers save the HTTP headers
--httpdbg-no-headers do not save the HTTP headers
--httpdbg-no-binary do not save the HTTP payload if it's a binary content
--httpdbg-only-on-failure save the HTTP requests only if the test failed

Expand Down
2 changes: 1 addition & 1 deletion pytest_httpdbg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
from pytest_httpdbg.plugin import httpdbg_record_filename # noqa F401

__version__ = "0.8.0"
__version__ = "0.8.1"
2 changes: 1 addition & 1 deletion pytest_httpdbg/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def pytest_addoption(parser):
"--httpdbg-no-headers",
action="store_true",
default=False,
help="save the HTTP headers",
help="do not save the HTTP headers",
)

reporting_group.addoption(
Expand Down