pytest.mark.veryslow - python examples

Here are the examples of the python api pytest.mark.veryslow taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

7 Examples 7

3 View Complete Implementation : test_client.py
Copyright Apache License 2.0
Author : aws
@pytest.mark.veryslow
@pytest.mark.hypothesis
@VERY_SLOW_SETTINGS
@hypothesis.given(item=ddb_items)
def test_ephemeral_item_cycle_hypothesis_veryslow(example_table, some_cmps, hypothesis_actions, item):
    """Test a small number of curated CMPs against ALL THE ITEMS."""
    _client_cycle_single_item_check(some_cmps, hypothesis_actions, item)

3 View Complete Implementation : test_item.py
Copyright Apache License 2.0
Author : aws
@pytest.mark.veryslow
@pytest.mark.hypothesis
@VERY_SLOW_SETTINGS
@hypothesis.given(item=ddb_items)
def test_ephemeral_item_cycle_hypothesis_veryslow(some_cmps, hypothesis_actions, item):
    """Test a small number of curated CMPs against ALL THE ITEMS."""
    _item_cycle_check(some_cmps, hypothesis_actions, item)

3 View Complete Implementation : test_table.py
Copyright Apache License 2.0
Author : aws
@pytest.mark.veryslow
@pytest.mark.hypothesis
@VERY_SLOW_SETTINGS
@hypothesis.given(item=ddb_items)
def test_ephemeral_item_cycle_hypothesis_veryslow(example_table, some_cmps, hypothesis_actions, item):
    """Test a small number of curated CMPs against ALL THE ITEMS."""
    _table_cycle_check(some_cmps, hypothesis_actions, item)

3 View Complete Implementation : test_attribute.py
Copyright Apache License 2.0
Author : aws
@pytest.mark.veryslow
@pytest.mark.hypothesis
@VERY_SLOW_SETTINGS
@hypothesis.given(ddb_attribute_values)
def test_serialize_deserialize_attribute_vslow(attribute):
    _serialize_deserialize_cycle(attribute)

3 View Complete Implementation : test_attribute.py
Copyright Apache License 2.0
Author : aws
@pytest.mark.veryslow
@pytest.mark.hypothesis
@VERY_SLOW_SETTINGS
@hypothesis.given(ddb_items)
def test_dict_to_ddb_and_back_vslow(item):
    _ddb_dict_ddb_transform_cycle(item)

3 View Complete Implementation : test_material_description.py
Copyright Apache License 2.0
Author : aws
@pytest.mark.veryslow
@pytest.mark.hypothesis
@VERY_SLOW_SETTINGS
@hypothesis.given(material_descriptions)
def test_serialize_deserialize_material_description_vslow(material_description):
    _serialize_deserialize_cycle(material_description)

3 View Complete Implementation : test_aws_kms.py
Copyright Apache License 2.0
Author : aws
@pytest.mark.veryslow
@hypothesis_strategies.VERY_SLOW_SETTINGS
@hypothesis.given(item=hypothesis_strategies.ddb_items)
def test_aws_kms_item_cycle_hypothesis_veryslow(all_aws_kms_cmp_builders, hypothesis_actions, item):
    crypto_config = CryptoConfig(
        materials_provider=all_aws_kms_cmp_builders(),
        encryption_context=EncryptionContext(),
        attribute_actions=hypothesis_actions,
    )
    functional_test_utils.cycle_item_check(item, crypto_config)