clortho

A very simple key/value server
git clone https://www.brianlane.com/git/clortho
Log | Files | Refs | README | LICENSE

commit 1cedeaef6ba694fbbd4e1c45805bd7717e2e85f8
parent 0c0d8509cc1be1bc8a5fbc84a2ff7648190941cb
Author: Brian C. Lane <bcl@brianlane.com>
Date:   Sun,  9 Sep 2018 09:29:42 -0700

Allow untyped-calls for now

Without this the new --strict settins complains about calling functions
in aiohttp.web like Response

Diffstat:
M.travis.yml | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml @@ -1,9 +1,9 @@ language: python python: - - "3.5" - "3.6" + - "3.7" - "nightly" # currently points to 3.7-dev # command to install dependencies install: "pip install -r requirements.txt" # command to run tests -script: mypy --strict --ignore-missing-imports ./src/clortho.py && pytest -v +script: mypy --strict --allow-untyped-calls --ignore-missing-imports ./src/clortho.py && pytest -v