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:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- uses : actions/checkout@v3
13
+
13
14
- name : Set up Python
14
15
uses : actions/setup-python@v3
15
16
with :
16
17
python-version : " 3.9"
18
+
17
19
- name : Install poetry
18
20
run : curl -sSL https://install.python-poetry.org | python3 -
21
+
19
22
- name : Configure poetry
20
23
run : poetry config virtualenvs.in-project true
24
+
21
25
- name : Set up cache
22
26
uses : actions/cache@v3
23
27
with :
24
28
path : .venv
25
29
key : venv-${{ hashFiles('**/poetry.lock') }}
26
30
restore-keys : venv-
31
+
27
32
- name : Install Dependencies
28
33
run : poetry install
34
+
29
35
- name : Publish
30
36
run : >-
31
37
poetry publish
Original file line number Diff line number Diff line change 1
1
Release Notes
2
2
=============
3
3
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
+
4
19
2.0.1 (2020-09-19)
5
20
------------------
6
21
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ description = "pytest plugin for Selenium"
9
9
license = " MPL-2.0"
10
10
authors = [
11
11
12
- " Jim Brännlund <[email protected] >"
12
+ " Jim Brannlund <[email protected] >"
13
13
]
14
14
readme = " README.rst"
15
15
homepage = " https://github.com/pytest-dev/pytest-selenium"
@@ -45,7 +45,7 @@ include = [
45
45
python = " ^3.7"
46
46
pytest = " ^6.0.0"
47
47
pytest-base-url = " ^2.0.0"
48
- pytest-html = " ^3.1.1 "
48
+ pytest-html = " >=2.0.0 "
49
49
pytest-variables = " ^2.0.0"
50
50
requests = " ^2.26.0"
51
51
selenium = " ^4.0.0"
You can’t perform that action at this time.
0 commit comments