File tree Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -10,22 +10,28 @@ jobs:
1010 runs-on : ubuntu-latest
1111 steps :
1212 - uses : actions/checkout@v3
13+
1314 - name : Set up Python
1415 uses : actions/setup-python@v3
1516 with :
1617 python-version : " 3.9"
18+
1719 - name : Install poetry
1820 run : curl -sSL https://install.python-poetry.org | python3 -
21+
1922 - name : Configure poetry
2023 run : poetry config virtualenvs.in-project true
24+
2125 - name : Set up cache
2226 uses : actions/cache@v3
2327 with :
2428 path : .venv
2529 key : venv-${{ hashFiles('**/poetry.lock') }}
2630 restore-keys : venv-
31+
2732 - name : Install Dependencies
2833 run : poetry install
34+
2935 - name : Publish
3036 run : >-
3137 poetry publish
Original file line number Diff line number Diff line change 11Release Notes
22=============
33
4+ 4.0.0 (2022-09-15)
5+ ------------------
6+
7+ * Selenium 4 support
8+
9+ * Drop support for python 3.6
10+
11+ * Add support for python 3.9 and 3.10
12+
13+ * Relax dependency constraint for pytest-html pending new release
14+
15+ * Handle non W3C caps for browserstack
16+
17+ * Thanks to `@Ankit098 <https://github.com/Ankit098 >`_ for the PR.
18+
4192.0.1 (2020-09-19)
520------------------
621
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ description = "pytest plugin for Selenium"
99license = " MPL-2.0"
1010authors = [
1111 " Dave Hunt <dhunt@mozilla.com>" ,
12- " Jim Brännlund <jimbrannlund@fastmail.com>"
12+ " Jim Brannlund <jimbrannlund@fastmail.com>"
1313]
1414readme = " README.rst"
1515homepage = " https://github.com/pytest-dev/pytest-selenium"
@@ -45,7 +45,7 @@ include = [
4545python = " ^3.7"
4646pytest = " ^6.0.0"
4747pytest-base-url = " ^2.0.0"
48- pytest-html = " ^3.1.1 "
48+ pytest-html = " >=2.0.0 "
4949pytest-variables = " ^2.0.0"
5050requests = " ^2.26.0"
5151selenium = " ^4.0.0"
You can’t perform that action at this time.
0 commit comments