From 0d8b65a9c09d2b62b7dbee6124f2d0a914bdc648 Mon Sep 17 00:00:00 2001 From: lilydjwg Date: Mon, 31 Aug 2020 17:50:11 +0800 Subject: [PATCH] missing updates about the new "appdirs" dep --- .travis.yml | 2 +- mypy.ini | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f1f87b5..e7306bf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ python: - "3.8" - "nightly" before_install: openssl enc -d -aes-256-ctr -pbkdf2 -k $KEY -in keyfile.toml.enc -out keyfile.toml -install: pip install -U $DEPS pytest pytest-asyncio pytest-httpbin flaky structlog toml +install: pip install -U $DEPS pytest pytest-asyncio pytest-httpbin flaky structlog toml appdirs script: pytest env: global: diff --git a/mypy.ini b/mypy.ini index a6d5643..a02b84b 100644 --- a/mypy.ini +++ b/mypy.ini @@ -17,3 +17,6 @@ ignore_missing_imports = True [mypy-pytest_httpbin] ignore_missing_imports = True + +[mypy-appdirs] +ignore_missing_imports = True