Skip to content

Commit

Permalink
Chore: support pytest 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sandre35 committed Feb 1, 2024
1 parent fe7e522 commit 38a8e78
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions docs/news.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Release Notes
=============

4.1.0 (2024-02-01)
------------------

* Support pytest 8.0

* Thanks to `@sandre35 <https://github.com/sandre35>`_ for reporting the issue and the PR.


4.0.2 (2023-11-20)
------------------

Expand Down
2 changes: 1 addition & 1 deletion src/pytest_selenium/pytest_selenium.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def pytest_addoption(parser):
parser.addini(
"selenium_exclude_debug",
help="debug to exclude from capture",
default=os.getenv("SELENIUM_EXCLUDE_DEBUG"),
default=os.getenv("SELENIUM_EXCLUDE_DEBUG", ""),
)

_auth_choices = ("none", "token", "hour", "day")
Expand Down

0 comments on commit 38a8e78

Please sign in to comment.