From 946415260c7549ed7df035cbc73f9a32962ba83e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Mayoral=20Vilches?= Date: Fri, 10 Jan 2025 14:19:25 +0000 Subject: [PATCH] Add pytest.ini and an ignored area within tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: VĂ­ctor Mayoral Vilches --- pytest.ini | 9 +++++++++ tests/ignored/.gitkeep | 0 2 files changed, 9 insertions(+) create mode 100644 pytest.ini create mode 100644 tests/ignored/.gitkeep diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 00000000..b0f09744 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,9 @@ +[pytest] +testpaths = + tests +addopts = -v --color=yes --tb=short + +# Specifying the directory to ignore +# +# norecursedirs = tests/ignored tests/aux tests/inference tests/state tests/tools +norecursedirs = tests/ignored diff --git a/tests/ignored/.gitkeep b/tests/ignored/.gitkeep new file mode 100644 index 00000000..e69de29b