diff options
author | drebs <drebs@leap.se> | 2016-11-17 22:14:51 -0200 |
---|---|---|
committer | Victor Shyba <victor1984@riseup.net> | 2016-11-18 16:15:47 -0300 |
commit | d2c29c8cd0e20d90f88c182b5b6f979109a07bb4 (patch) | |
tree | 5059bed98b3f713c5b3da3d03000ba1f2c22ffac /testing/tests/perf/test_crypto.py | |
parent | 2458336f0bc1828a90e36b58b18a598a38f7c81a (diff) |
[test] use tags for selecting benchmark tests
Diffstat (limited to 'testing/tests/perf/test_crypto.py')
-rw-r--r-- | testing/tests/perf/test_crypto.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testing/tests/perf/test_crypto.py b/testing/tests/perf/test_crypto.py index 367c3b5b..a438ee49 100644 --- a/testing/tests/perf/test_crypto.py +++ b/testing/tests/perf/test_crypto.py @@ -18,6 +18,9 @@ from leap.soledad.client import _crypto LIMIT = int(float(os.environ.get('SIZE_LIMIT', 50 * 1000 * 1000))) +pytestmark = pytest.mark.perf + + def create_doc_encryption(size): @pytest.mark.benchmark(group="test_crypto_encrypt_doc") def test_doc_encryption(soledad_client, benchmark, payload): |