aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2018-07-16 11:18:33 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2018-07-16 20:48:33 +0530
commit2e85a925b49e566776585f35a7c0653510d84262 (patch)
treee6c6242efcab8249cbc56e6db8735e3566b0b96a /.travis
parentb09b9ecd695187f323c509aecdf517cadcf728d1 (diff)
downloadcryptography-2e85a925b49e566776585f35a7c0653510d84262.tar.gz
cryptography-2e85a925b49e566776585f35a7c0653510d84262.tar.bz2
cryptography-2e85a925b49e566776585f35a7c0653510d84262.zip
Refs #3331 -- added initial wycheproof integration, starting with x25519, rsa, and keywrap (#4310)
* Refs #3331 -- added initial wycheproof integration, starting with x25519 tests
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/install.sh3
-rwxr-xr-x.travis/run.sh2
2 files changed, 4 insertions, 1 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index a4aa9a42..e3b20fdb 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -40,6 +40,9 @@ elif [ -n "${LIBRESSL}" ]; then
popd
fi
fi
+
+git clone --depth=1 https://github.com/google/wycheproof $HOME/wycheproof
+
pip install virtualenv
python -m virtualenv ~/.venv
diff --git a/.travis/run.sh b/.travis/run.sh
index 32e9874b..38b66528 100755
--- a/.travis/run.sh
+++ b/.travis/run.sh
@@ -24,7 +24,7 @@ fi
source ~/.venv/bin/activate
if [ -n "${TOXENV}" ]; then
- tox
+ tox -- --wycheproof-root=$HOME/wycheproof
else
pip install .
case "${DOWNSTREAM}" in