diff --git a/poetry.lock b/poetry.lock
index e9a7e8e5f30486b0b1e2e8e2ba1af92fc9fcd0c3..76413800a659670a72c879f21cb893062ef87619 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -340,6 +340,20 @@ pytest = ">=4.6"
 [package.extras]
 testing = ["fields", "hunter", "process-tests", "six", "pytest-xdist", "virtualenv"]
 
+[[package]]
+name = "pytest-order"
+version = "1.0.1"
+description = "pytest plugin to run your tests in a specific order"
+category = "dev"
+optional = false
+python-versions = ">=3.6"
+
+[package.dependencies]
+pytest = [
+    {version = ">=6.2.4", markers = "python_version >= \"3.10\""},
+    {version = ">=5.0", markers = "python_version < \"3.10\""},
+]
+
 [[package]]
 name = "python-dateutil"
 version = "2.8.2"
@@ -480,7 +494,7 @@ test = ["pytest-mock (>=3.3)", "pytest (>=4.3)"]
 [metadata]
 lock-version = "1.1"
 python-versions = ">=3.9,<3.11"
-content-hash = "b3dfe37140f64f01cb124ca5406fa279844c31f9edb84260d6011e370a34f523"
+content-hash = "e44f13ffc51c54bd31babbba63e79a9d1fbe37e36abacda99fab4f3d91227a9b"
 
 [metadata.files]
 atomicwrites = [
@@ -835,6 +849,7 @@ pytest-cov = [
     {file = "pytest-cov-3.0.0.tar.gz", hash = "sha256:e7f0f5b1617d2210a2cabc266dfe2f4c75a8d32fb89eafb7ad9d06f6d076d470"},
     {file = "pytest_cov-3.0.0-py3-none-any.whl", hash = "sha256:578d5d15ac4a25e5f961c938b85a05b09fdaae9deef3bb6de9a6e766622ca7a6"},
 ]
+pytest-order = []
 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/pyproject.toml b/pyproject.toml
index ebb113d9d08c06cb510eb822c026afd12489f540..ba0e81b83354b259c70e63743845ab3feee4a47c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -18,6 +18,7 @@ beartype = "^0.11.0"
 [tool.poetry.dev-dependencies]
 pytest = "^7.1.1"
 pytest-cov = "^3.0.0"
+pytest-order = "^1.0.1"
 
 [build-system]
 requires = ["poetry-core>=1.0.0"]