kickthemout/.travis.yml

29 lines
417 B
YAML
Raw Normal View History

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