File tree 2 files changed +3
-1
lines changed
test/acceptance/encrypted 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ markers =
19
19
unit: mark test as a unit test (does not require network access)
20
20
functional: mark test as a functional test (does not require network access)
21
21
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)
22
24
hypothesis: mark a test as using hypothesis (will run many times for each pytest call)
23
25
slow: mark a test as being known to take a long time to complete (order 5s < t < 60s)
24
26
veryslow: mark a test as being known to take a very long time to complete (order t > 60s)
Original file line number Diff line number Diff line change 18
18
from dynamodb_encryption_sdk .structures import EncryptionContext
19
19
from ..acceptance_test_utils import load_scenarios
20
20
21
- pytestmark = [pytest .mark .acceptance , pytest .mark .integ ]
21
+ pytestmark = [pytest .mark .accept , pytest .mark .integ ]
22
22
23
23
24
24
@pytest .mark .parametrize (
You can’t perform that action at this time.
0 commit comments