Files
2020-06-30 23:25:38 +03:00

25 lines
452 B
YAML

language: python
python:
- "3.6.7"
services:
- docker
install:
- pip3 install -r requirements.txt
before_install:
- docker pull eclipse-mosquitto
- docker run --rm --name=mqtt -d -p 1883:1883 -p 9001:9001 eclipse-mosquitto
- docker ps -a
- export MQTT_HOST='127.0.0.1'
- export MQTT_PORT=1883
- export MQTT_TOPIC='Lights'
script:
- flake8 homeAutomation
- pytest --cov=homeAutomation --cov-report=html tests
after_success:
- coveralls