kickthemout/.travis.yml

27 lines
337 B
YAML
Raw Normal View History

2018-02-05 22:07:38 +01:00
sudo: required
2018-02-05 23:39:57 +01:00
dist: trusty
2018-02-05 22:55:34 +01:00
language: python
2017-01-10 12:49:30 +01:00
python:
2018-02-05 20:39:08 +01:00
- "3.4"
- "3.5"
- "3.6"
2018-02-05 22:25:49 +01:00
2018-02-05 20:39:08 +01:00
install:
2018-02-06 13:35:29 +01:00
- sudo pip install -r requirements.txt
2017-01-10 12:49:30 +01:00
script:
2018-02-06 13:41:28 +01:00
- sudo python3 -c "import kickthemout;"
2018-02-05 22:25:49 +01:00
branches:
only:
- master
2018-02-05 22:57:35 +01:00
addons:
apt:
packages:
- nmap
2018-02-05 22:25:49 +01:00
notifications:
email:
on_success: never
2018-02-06 13:15:06 +01:00
on_failure: always