2017-06-05 13:38:36 +02:00
|
|
|
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"
|
2017-06-05 13:38:36 +02:00
|
|
|
|
|
|
|
script:
|
|
|
|
- "pylint ./magneticod/magneticod"
|
|
|
|
- "pylint ./magneticow/magneticow"
|
|
|
|
- "mypy ./magneticod/magneticod"
|
|
|
|
- "mypy ./magneticow/magneticow"
|