Skip to content

Commit dba7377

Browse files
committed
add pytest acceptance and examples test markers
1 parent dc3da0d commit dba7377

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ markers =
1919
unit: mark test as a unit test (does not require network access)
2020
functional: mark test as a functional test (does not require network access)
2121
integ: mark a test as an integration test (requires network access)
22+
accept: mark a test as an acceptance test (requires network access)
23+
examples: mark a test as an examples test (requires network access)
2224
hypothesis: mark a test as using hypothesis (will run many times for each pytest call)
2325
slow: mark a test as being known to take a long time to complete (order 5s < t < 60s)
2426
veryslow: mark a test as being known to take a very long time to complete (order t > 60s)

test/acceptance/encrypted/test_item.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from dynamodb_encryption_sdk.structures import EncryptionContext
1919
from ..acceptance_test_utils import load_scenarios
2020

21-
pytestmark = [pytest.mark.acceptance, pytest.mark.integ]
21+
pytestmark = [pytest.mark.accept, pytest.mark.integ]
2222

2323

2424
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)