Add pytest-qt test dependency

This commit is contained in:
Alex Pyrgiotis 2023-07-04 19:47:57 +03:00
parent 5b17f75047
commit ca81b4a5f3
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA
2 changed files with 20 additions and 0 deletions

19
poetry.lock generated
View file

@ -825,6 +825,24 @@ pytest = ">=5.0"
[package.extras] [package.extras]
dev = ["pre-commit", "pytest-asyncio", "tox"] dev = ["pre-commit", "pytest-asyncio", "tox"]
[[package]]
name = "pytest-qt"
version = "4.2.0"
description = "pytest support for PyQt and PySide applications"
optional = false
python-versions = ">=3.7"
files = [
{file = "pytest-qt-4.2.0.tar.gz", hash = "sha256:00a17b586dd530b6d7a9399923a40489ca4a9a309719011175f55dc6b5dc8f41"},
{file = "pytest_qt-4.2.0-py2.py3-none-any.whl", hash = "sha256:a7659960a1ab2af8fc944655a157ff45d714b80ed7a6af96a4b5bb99ecf40a22"},
]
[package.dependencies]
pytest = ">=3.0.0"
[package.extras]
dev = ["pre-commit", "tox"]
doc = ["sphinx", "sphinx-rtd-theme"]
[[package]] [[package]]
name = "pytest-xdist" name = "pytest-xdist"
version = "2.5.0" version = "2.5.0"
@ -1079,3 +1097,4 @@ testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more
[metadata] [metadata]
lock-version = "2.0" lock-version = "2.0"
python-versions = ">=3.7,<3.12" python-versions = ">=3.7,<3.12"
content-hash = "e884b083ede586ab4f5d63a5b14287331542296cd7bc1c305dbd1745b0c8497c"

View file

@ -41,6 +41,7 @@ types-requests = "*"
[tool.poetry.group.test.dependencies] [tool.poetry.group.test.dependencies]
pytest = "^7.1.2" pytest = "^7.1.2"
pytest-mock = "^3.10.0" pytest-mock = "^3.10.0"
pytest-qt = "^4.2.0"
pytest-xdist = "^2.5.0" pytest-xdist = "^2.5.0"
pytest-cov = "^3.0.0" pytest-cov = "^3.0.0"
strip-ansi = "*" strip-ansi = "*"