From 9d2d1c85adf1a00f8774b1e59d8b5269fe81f309 Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Sun, 22 Oct 2017 16:51:16 +0200 Subject: hash: Support pyblake2 & pysha3 fallbacks --- tox.ini | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index c62895a..1f444a0 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,33 @@ [tox] envlist = py27,py34,py35,py36,pypy,pypy3 +[testenv:py27] +deps = + pyblake2 + pysha3 + +[testenv:py34] +deps = + pyblake2 + pysha3 + +[testenv:py35] +deps = + pyblake2 + pysha3 + +[testenv:py36] +# blake2 & sha3 are built-in +deps = + +[testenv:pypy] +deps = + pyblake2 + pysha3 + +[testenv:pypy3] +# note: pyblake2, pysha3 don't build +deps = + [testenv] commands = python -m unittest discover -v -- cgit v1.2.3