magnetico/.travis.yml

17 lines
438 B
YAML
Raw Normal View History

language: python
python:
- "3.5"
- "3.6.2" # versions 3.6.0 and 3.6.1 have bugs that affect magneticod
# We explicitly state that sudo should NOT be required to compile, test, and run magnetico
sudo: false
install:
2017-06-05 15:38:06 +02:00
- "pip3 install ./magneticod"
- "pip3 install ./magneticow"
script:
- "pylint ./magneticod/magneticod"
- "pylint ./magneticow/magneticow"
- "mypy ./magneticod/magneticod"
- "mypy ./magneticow/magneticow"