clortho

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

.travis.yml (288B)


      1 language: python
      2 python:
      3   - "3.6"
      4   - "3.7"
      5   - "nightly" # currently points to 3.7-dev
      6 # command to install dependencies
      7 install: "pip install -r requirements.txt"
      8 # command to run tests
      9 script: mypy --strict --allow-untyped-calls --ignore-missing-imports ./src/clortho.py && pytest -v