Skip to content
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
1 change: 1 addition & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ jobs:
seleniumbase install chromedriver
- name: Make sure pytest is working
run: |
pytest --help
echo "def test_1(): pass" > nothing.py
pytest nothing.py
- name: Make sure nosetests is working
Expand Down
4 changes: 2 additions & 2 deletions mkdocs_build/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ regex>=2025.9.1
pymdown-extensions>=10.16.1
pipdeptree>=2.28.0
python-dateutil>=2.8.2
Markdown==3.8.2
Markdown==3.9
click==8.2.1
ghp-import==2.1.0
watchdog==6.0.0
Expand All @@ -14,7 +14,7 @@ pathspec==0.12.1
Babel==2.17.0
paginate==0.5.7
mkdocs==1.6.1
mkdocs-material==9.6.18
mkdocs-material==9.6.19
mkdocs-exclude-search==0.6.6
mkdocs-simple-hooks==0.1.5
mkdocs-material-extensions==1.3.1
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ rich>=14.1.0,<15
coverage>=7.6.1;python_version<"3.9"
coverage>=7.10.6;python_version>="3.9"
pytest-cov>=5.0.0;python_version<"3.9"
pytest-cov>=6.2.1;python_version>="3.9"
pytest-cov>=6.3.0;python_version>="3.9"
flake8==5.0.4;python_version<"3.9"
flake8==7.3.0;python_version>="3.9"
mccabe==0.7.0
Expand Down
2 changes: 1 addition & 1 deletion seleniumbase/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# seleniumbase package
__version__ = "4.41.4"
__version__ = "4.41.5"
9 changes: 7 additions & 2 deletions seleniumbase/plugins/pytest_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -2506,8 +2506,13 @@ def pytest_unconfigure(config):
reporter = config.pluginmanager.get_plugin("terminalreporter")
if (
not hasattr(reporter, "_sessionstarttime")
and not hasattr(reporter, "_session_start")
and not hasattr(reporter._session_start, "time")
and (
not hasattr(reporter, "_session_start")
or (
hasattr(reporter, "_session_start")
and not hasattr(reporter._session_start, "time")
)
)
):
return
if hasattr(sb_config, "_multithreaded") and sb_config._multithreaded:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@
'coverage>=7.6.1;python_version<"3.9"',
'coverage>=7.10.6;python_version>="3.9"',
'pytest-cov>=5.0.0;python_version<"3.9"',
'pytest-cov>=6.2.1;python_version>="3.9"',
'pytest-cov>=6.3.0;python_version>="3.9"',
],
# pip install -e .[flake8]
# Usage: flake8
Expand Down