diff options
author | Donald Stufft <donald@stufft.io> | 2013-10-16 15:07:30 -0700 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2013-10-16 15:07:30 -0700 |
commit | 9a76847c67f76184afbd5274d55ac55c34e06dd2 (patch) | |
tree | 0169b36528a7ef6fddcd3f5c097e0083f84f80ec /tests/conftest.py | |
parent | b98118f59f1f6ba79f3b5cdd705ebc56f9ec9f34 (diff) | |
parent | 745c95c75cc6588ecd9b927e5974bf00426125a2 (diff) | |
download | cryptography-9a76847c67f76184afbd5274d55ac55c34e06dd2.tar.gz cryptography-9a76847c67f76184afbd5274d55ac55c34e06dd2.tar.bz2 cryptography-9a76847c67f76184afbd5274d55ac55c34e06dd2.zip |
Merge pull request #106 from alex/duplication-reduction
Remove much of the duplication found in the tests
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index d16be3b6..b526f2bf 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,5 +1,5 @@ def pytest_generate_tests(metafunc): - from cryptography.bindings.openssl import api + from cryptography.bindings import _ALL_APIS if "api" in metafunc.fixturenames: - metafunc.parametrize("api", [api]) + metafunc.parametrize("api", _ALL_APIS) |