From 747e2e98e9b8fd56c1564ba11bce69ae068c02ea Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sun, 12 Aug 2018 15:38:00 -0400 Subject: Fixes #4388 -- when running the aws-encryption-sdk tests only point pytest at one directory (#4391) * Fixes #4388 -- when running the aws-encryption-sdk tests only point pytest at one directory * Drop -l, there's no purpose for how we use these --- .travis/run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.travis') diff --git a/.travis/run.sh b/.travis/run.sh index 38b66528..572b9a4d 100755 --- a/.travis/run.sh +++ b/.travis/run.sh @@ -52,14 +52,14 @@ else cd aws-encryption-sdk-python pip install -r test/requirements.txt pip install -e . - pytest -m local -l + pytest -m local test/ ;; dynamodb-encryption-sdk) 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 . - pytest -m "local and not slow and not veryslow and not nope" -l + pytest -m "local and not slow and not veryslow and not nope" ;; certbot) git clone --depth=1 https://github.com/certbot/certbot -- cgit v1.2.3