From 9443c2a4c6753f4d1eccda8de4dbda95e080639e Mon Sep 17 00:00:00 2001 From: Landung 'Don' Setiawan Date: Wed, 20 Sep 2023 15:37:37 -0700 Subject: [PATCH] chore(pytest): Added custom markers 'unit' and 'integration' --- pytest.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pytest.ini b/pytest.ini index 7a3a8bfd2..9ad97f3a7 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,5 +1,7 @@ # test directory [pytest] testpaths = echopype/tests - cache_dir = .cache +markers = + unit: marks tests as unit tests + integration: marks tests as integration tests