kickthemout/.travis.yml

29 lines
417 B
YAML
Raw Permalink 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-20 15:10:09 +01:00
- sudo -H python3 -m pip install -r requirements.txt
2017-01-10 12:49:30 +01:00
script:
2018-02-20 15:10:09 +01:00
- sudo -H python3 -c "import kickthemout; import scan; import spoof;"
2018-02-05 22:25:49 +01:00
branches:
only:
- master
2018-02-05 22:57:35 +01:00
addons:
apt:
packages:
2018-02-20 15:15:11 +01:00
- python3
- python3-pip
2018-02-05 22:57:35 +01:00
- 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