forked from secdev/scapy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
75 lines (64 loc) · 1.86 KB
/
.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
language: python
dist: bionic # OpenSSL 1.1.1
cache:
directories:
- $HOME/.cache/pip
- .tox
jobs:
include:
# Run linux as root (non root tested by github ci)
- os: linux
python: 2.7
env:
- TOXENV=py27-linux_root,codecov
- os: linux
python: pypy2
env:
- TOXENV=pypy-linux_root,codecov
- os: linux
python: pypy3
env:
- TOXENV=pypy3-linux_root,codecov
- os: linux
python: 3.8
env:
- TOXENV=py38-linux_root,codecov
# run OSX
- os: osx
osx_image: xcode9.3
language: shell
before_install:
- python --version
- pip install --upgrade --ignore-installed --user pip tox setuptools
env:
- TOXENV=py27-bsd_non_root,py27-bsd_root,codecov
- os: osx
osx_image: xcode10.2
language: shell
before_install:
- python3 --version
- pip3 install --upgrade --ignore-installed pip tox setuptools
env:
- TOXENV=py37-bsd_non_root,py37-bsd_root,codecov
# 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_PCAPDNET=yes TOXENV=py38-linux_root,codecov
# warnings/deprecations
- os: linux
python: 3.8
env:
- SCAPY_PY_OPTS="-Werror -X tracemalloc=25" TOXENV=py38-linux_root
allow_failures:
- env: SCAPY_PY_OPTS="-Werror -X tracemalloc=25" 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