forked from wifiphisher/wifiphisher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
49 lines (39 loc) · 1001 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# There's no sudo: required because it slows down Travis CI job startup
# and we don't really need it with addons: apt.
language: python
dist: trusty
python:
- "2.7"
install:
- pip install pylint tox scapy
- pip install tornado==4.5.3
- python setup.py install
script:
- pylint --errors-only wifiphisher
- tox -e ALL
branches:
only:
- master
- python3
notifications:
email:
on_success: never
on_failure: always
irc:
channels:
- "chat.freenode.net#wifiphisher"
use_notice: true
# FIXME: python-tornado is here because of this error:
#
# > Tornado requires an up-to-date SSL module. This means Python 2.7.9+ or 3.4+
# > (although some distributions have backported the necessary changes to older
# > versions)
#
# Ubuntu does the backporting. The proper solution would be to upgrade Python
# or somehow bypass this Tornado check (or use an older Tornado version
# perhaps?)
addons:
apt:
packages:
- hostapd
- dnsmasq