Skip to content

Commit 768879e

Browse files
authored
pin selenium <4.10, bump pytest-html-report-merger to 0.1.2, add selenium-axe-python (#32)
* add selenium-axe-pyhon package to selene1x branch pin selenium package to versions <4.10 because pytest-selenium currently supports versions <4.10. add py package because pytest-selenium still depends on it. in Makefile, update `pyenv` target to try to delete the virtual environment before creating it. this way, we can get a clean virtual environment. * bump version of pytest-html-report-merger to support pytest-html 4.0.0+
1 parent fb7bbb6 commit 768879e

File tree

3 files changed

+893
-380
lines changed

3 files changed

+893
-380
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ PYTHON_VERSION=3.9.10
55

66
pyenv:
77
pyenv install ${PYTHON_VERSION} --skip-existing
8+
pyenv virtualenv-delete ${PROJECT} || true
89
pyenv virtualenv ${PYTHON_VERSION} ${PROJECT}
910
pyenv local ${PROJECT}
1011
pip install pipenv

Pipfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pytest-test-groups = "*"
2121
pytest-xdist = "*"
2222
python-dateutil = "*"
2323
requests = "*"
24-
selenium = "*"
24+
selenium = "<4.10"
2525
selene = {git = "https://github.com/yashaka/selene.git",ref = "1.0.0a13"}
2626
fuzzbucket-client = "*"
2727
browsermob-proxy = "==0.8.0"
@@ -32,6 +32,8 @@ showfails = "*"
3232
pytest-reportportal = "*"
3333
rsa = "*"
3434
posix-ipc = "*"
35+
selenium-axe-python = "*"
36+
py = "*"
3537

3638
[pipenv]
3739
allow_prereleases = true

0 commit comments

Comments
 (0)