diff --git a/userspace/poetry.lock b/userspace/poetry.lock index 551202a..ca45e26 100644 --- a/userspace/poetry.lock +++ b/userspace/poetry.lock @@ -1512,6 +1512,17 @@ tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""} [package.extras] testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] +[[package]] +name = "pytest-random-order" +version = "1.1.0" +description = "Randomise the order in which pytest tests are run with some control over the randomness" +category = "main" +optional = false +python-versions = ">=3.5.0" + +[package.dependencies] +pytest = ">=3.0.0" + [[package]] name = "python-dateutil" version = "2.8.2" @@ -2120,7 +2131,7 @@ python-versions = "*" [metadata] lock-version = "1.1" python-versions = "^3.8" -content-hash = "28c026cd5bedd5ba4347b9317311e1cce342ab9fb675f6ff51f254e4c88b0146" +content-hash = "bf54d64dc00c6ac240fe4175e72c629ccde892bf734e2ae4414bd1b0d621d867" [metadata.files] aenum = [ @@ -3937,6 +3948,10 @@ pytest = [ {file = "pytest-7.4.0-py3-none-any.whl", hash = "sha256:78bf16451a2eb8c7a2ea98e32dc119fd2aa758f1d5d66dbf0a59d69a3969df32"}, {file = "pytest-7.4.0.tar.gz", hash = "sha256:b4bf8c45bd59934ed84001ad51e11b4ee40d40a1229d2c79f9c592b0a3f6bd8a"}, ] +pytest-random-order = [ + {file = "pytest-random-order-1.1.0.tar.gz", hash = "sha256:dbe6debb9353a7af984cc9eddbeb3577dd4dbbcc1529a79e3d21f68ed9b45605"}, + {file = "pytest_random_order-1.1.0-py3-none-any.whl", hash = "sha256:6cb1e59ab0f798bb0c3488c11ae0c70d7d3340306a466d28b28ccd8ef8c20b7e"}, +] python-dateutil = [ {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, diff --git a/userspace/pyproject.toml b/userspace/pyproject.toml index fc77930..72b20e9 100644 --- a/userspace/pyproject.toml +++ b/userspace/pyproject.toml @@ -65,6 +65,7 @@ pydub = "*" aiohttp = "*" aiortc = "*" evdev = "*" +pytest-random-order = "^1.1.0" [tool.poetry.group.dev.dependencies] ipython = "*"