This is an automated email from the ASF dual-hosted git repository.
humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
The following commit(s) were added to refs/heads/master by this push:
new e64ab38 Force cache dir
e64ab38 is described below
commit e64ab38ed8f927a14b720b65188f105e0cd71178
Author: Daniel Gruno <[email protected]>
AuthorDate: Wed Jun 9 14:02:11 2021 +0200
Force cache dir
---
.travis.yml | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index 65127e5..8a8a2af 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -25,12 +25,12 @@ before_script:
script:
- pip install -r server/requirements.txt
- pip install -r requirements.txt
- - mypy --install-types
- - mypy --ignore-missing-imports tools/archiver.py
- - mypy --ignore-missing-imports tools/import-mbox.py
- - mypy --ignore-missing-imports server/main.py
- - mypy --ignore-missing-imports server/plugins/*.py
- - mypy --ignore-missing-imports server/endpoints/*.py
+ - mypy --cache-dir /tmp/ --install-types
+ - mypy --cache-dir /tmp/ --ignore-missing-imports tools/archiver.py
+ - mypy --cache-dir /tmp/ --ignore-missing-imports tools/import-mbox.py
+ - mypy --cache-dir /tmp/ --ignore-missing-imports server/main.py
+ - mypy --cache-dir /tmp/ --ignore-missing-imports server/plugins/*.py
+ - mypy --cache-dir /tmp/ --ignore-missing-imports server/endpoints/*.py
jobs:
include: