forked from secdev/scapy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
35 lines (30 loc) · 818 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
language: python
dist: bionic # OpenSSL 1.1.1
cache:
directories:
- $HOME/.cache/pip
- .tox
jobs:
include:
# run custom root tests
# isotp
- os: linux
python: 3.8
env:
- TOXENV=py38-isotp_kernel_module,codecov
# libpcap
- os: linux
python: 3.8
env:
- SCAPY_USE_LIBPCAP=yes TOXENV=py38-linux_root,codecov
# warnings/deprecations
- os: linux
python: 3.8
env:
- SCAPY_PY_OPTS="-Werror -X tracemalloc" TOXENV=py38-linux_root
allow_failures:
- env: SCAPY_PY_OPTS="-Werror -X tracemalloc" TOXENV=py38-linux_root
install:
- bash .config/ci/install.sh
- python -c "from scapy.all import conf; print(repr(conf))"
script: bash .config/ci/test.sh