-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Three small but important bugfixes (#25)
* - Do not auto-use the `session_browser` fixture Not all contexts are easily equipped to handle more than one context, and need the ability to define their own. - Ensure that if the SELENIUM_SERVER environment variable is not provided, it is set to None; ensure no whitespace leaks through. - Fix default report_title, which was usually None at the time the fixture ran. * Update pyproject.toml version to 4.0.1-alpha.0 * Fix conflicting use cases for selenium_server argument No wonder I was always so confused by how this was getting set. * Clean up one last autouse of the session_browser * Update pyproject.toml version to 4.0.1-alpha.1 Co-authored-by: tomthorogood <[email protected]>
- Loading branch information
1 parent
ba268da
commit e582504
Showing
3 changed files
with
59 additions
and
36 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
[tool.poetry] | ||
name = "uw-webdriver-recorder" | ||
version = "4.0.0" | ||
# This version string is typically managed by the CI workflow, | ||
# and is changed anytime `poetry version [new version]` is run. | ||
# Do not revert this manually. | ||
version = "4.0.1-alpha.1" | ||
description = "A pytest plugin for recording screenshots of selenium interactions, with other convenient features too." | ||
authors = ["Tom Thorogood <[email protected]>"] | ||
license = "Apache Software License 3.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters