aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorMatt Bullock <bullocm@amazon.com>2018-08-31 05:05:16 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2018-08-31 08:05:16 -0400
commit6511f88140da1e948cdaa63a4f8d0fef21003b34 (patch)
tree177182639a9a426624e74f1dc50ae563a2e3de80 /.travis
parent378a26773b4996ed34ab3e00ef72f8c4986585d7 (diff)
downloadcryptography-6511f88140da1e948cdaa63a4f8d0fef21003b34.tar.gz
cryptography-6511f88140da1e948cdaa63a4f8d0fef21003b34.tar.bz2
cryptography-6511f88140da1e948cdaa63a4f8d0fef21003b34.zip
Lock aws-encryption-sdk and dynamodb-encryption-sdk downstream test dependencies (#4441)
* lock aws-encryption-sdk and dynamodb-encryption-sdk downstream tests to frozen dependencies * explicitly identify test directory in dynanmodb-encryption-sdk downstream tests * install the frozen dependencies after installing the package to force dependencies to the frozen set
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/downstream.d/aws-encryption-sdk.sh2
-rwxr-xr-x.travis/downstream.d/dynamodb-encryption-sdk.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/.travis/downstream.d/aws-encryption-sdk.sh b/.travis/downstream.d/aws-encryption-sdk.sh
index 7363a83e..044f70d9 100755
--- a/.travis/downstream.d/aws-encryption-sdk.sh
+++ b/.travis/downstream.d/aws-encryption-sdk.sh
@@ -4,8 +4,8 @@ case "${1}" in
install)
git clone --depth=1 https://github.com/awslabs/aws-encryption-sdk-python
cd aws-encryption-sdk-python
- pip install -r test/requirements.txt
pip install -e .
+ pip install -r test/upstream-requirements-py27.txt
;;
run)
cd aws-encryption-sdk-python
diff --git a/.travis/downstream.d/dynamodb-encryption-sdk.sh b/.travis/downstream.d/dynamodb-encryption-sdk.sh
index 891c616e..196cd5b6 100755
--- a/.travis/downstream.d/dynamodb-encryption-sdk.sh
+++ b/.travis/downstream.d/dynamodb-encryption-sdk.sh
@@ -4,12 +4,12 @@ case "${1}" in
install)
git clone --depth=1 https://github.com/awslabs/aws-dynamodb-encryption-python
cd aws-dynamodb-encryption-python
- pip install -r test/requirements.txt
pip install -e .
+ pip install -r test/upstream-requirements-py27.txt
;;
run)
cd aws-dynamodb-encryption-python
- pytest -m "local and not slow and not veryslow and not nope"
+ pytest test/ -m "local and not slow and not veryslow and not nope"
;;
*)
exit 1