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
diff --git a/.travis/run.sh b/.travis/run.sh
index 38b6652..572b9a4 100755
--- a/.travis/run.sh
+++ b/.travis/run.sh
@@ -52,14 +52,14 @@
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