From 2d7a80651b664bedab6c6a3ab90a0bb954a82f95 Mon Sep 17 00:00:00 2001 From: Gustavo Moreira Date: Sun, 1 Dec 2024 20:27:00 +1100 Subject: [PATCH] testing: Enable parallel execution for tests --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index fc1ab96cbc..ca9eedfc75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,6 +38,7 @@ test = [ "volatility3[dev]", "pytest>=8.3.3,<9", "yara-x>=0.10.0,<1", + "pytest-xdist", ] docs = [ @@ -73,3 +74,6 @@ ignore_missing_imports = true [build-system] requires = ["setuptools>=68"] build-backend = "setuptools.build_meta" + +[tool.pytest.ini_options] +addopts="-n auto"