mirror of
https://github.com/k4m4/kickthemout.git
synced 2024-11-12 16:18:55 +01:00
22 lines
312 B
YAML
22 lines
312 B
YAML
language: python
|
|
sudo: required
|
|
python:
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
dist: trusty
|
|
|
|
install:
|
|
- sudo -H pip3 install scapy
|
|
- pip3 install -r requirements.txt
|
|
script:
|
|
- sudo python3 kickthemout.py
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
on_failure: always |