From bd00b1c6fec63f0dbe0552028033f087f761fb68 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Sun, 21 Jul 2024 20:41:05 +0000 Subject: [PATCH] add the rules marker --- pytest.ini | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/pytest.ini b/pytest.ini index 3073d34..81d2f76 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,10 +1,11 @@ -[pytest] -# show the top 25 durations, and show the pass/fail: -addopts = --durations=25 -rA - -markers = - get: marks a test as a get request test (deselect with '-m "not get"') - role: marks a test as a role test (deselect with '-m "not role"') - endpoint: marks a test as an endpoint test (deselect with '-m "not endpoint"') - redaction: marks a test as a redaction test (deselect with '-m "not redaction"') - client_application: marks a test as a client application test (deselect with '-m "not client_application"') +[pytest] +# show the top 25 durations, and show the pass/fail: +addopts = --durations=25 -rA + +markers = + rules: marks a test as a gamma world rules test (deselect with '-m "not rules"') + get: marks a test as a get request test (deselect with '-m "not get"') + role: marks a test as a role test (deselect with '-m "not role"') + endpoint: marks a test as an endpoint test (deselect with '-m "not endpoint"') + redaction: marks a test as a redaction test (deselect with '-m "not redaction"') + client_application: marks a test as a client application test (deselect with '-m "not client_application"')