-
-
Notifications
You must be signed in to change notification settings - Fork 2k
167 lines (161 loc) · 4.44 KB
/
unittests.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
name: Scapy unit tests
on:
push:
branches: [master]
pull_request:
# The branches below must be a subset of the branches above
branches: [master]
permissions:
contents: read
jobs:
health:
name: Code health check
runs-on: ubuntu-latest
steps:
- name: Checkout Scapy
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install tox
run: pip install tox
- name: Run flake8 tests
run: tox -e flake8
- name: Run codespell
run: tox -e spell
- name: Run twine check
run: tox -e twine
- name: Run gitarchive check
run: tox -e gitarchive
docs:
name: Build doc
runs-on: ubuntu-latest
steps:
- name: Checkout Scapy
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install tox
run: pip install tox
- name: Build docs
run: tox -e docs
mypy:
name: Type hints check
runs-on: ubuntu-latest
steps:
- name: Checkout Scapy
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install tox
run: pip install tox
- name: Run mypy
run: tox -e mypy
utscapy:
name: ${{ matrix.os }} ${{ matrix.installmode }} ${{ matrix.python }} ${{ matrix.mode }} ${{ matrix.flags }}
runs-on: ${{ matrix.os }}
timeout-minutes: 20
continue-on-error: ${{ matrix.allow-failure == 'true' }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: ["3.7", "3.8", "3.9", "3.10"]
mode: [non_root]
installmode: ['']
flags: [" -K scanner"]
allow-failure: ['false']
include:
# Linux root tests
- os: ubuntu-latest
python: "3.10"
mode: root
flags: " -K scanner"
# PyPy tests: root only
- os: ubuntu-latest
python: "pypy3.9"
mode: root
flags: " -K scanner"
# Libpcap test
- os: ubuntu-latest
python: "3.10"
mode: root
installmode: 'libpcap'
flags: " -K scanner"
# macOS tests
- os: macos-12
python: "3.10"
mode: both
flags: " -K scanner"
# Scanner tests
- os: ubuntu-latest
python: "3.10"
mode: root
allow-failure: 'true'
flags: " -k scanner"
- os: ubuntu-latest
python: "pypy3.9"
mode: root
allow-failure: 'true'
flags: " -k scanner"
- os: macos-12
python: "3.10"
mode: both
allow-failure: 'true'
flags: " -k scanner"
steps:
- name: Checkout Scapy
uses: actions/checkout@v3
# Codecov requires a fetch-depth > 1
with:
fetch-depth: 2
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: ./.config/ci/install.sh ${{ matrix.installmode }}
- name: Run Tox
run: UT_FLAGS="${{ matrix.flags }}" ./.config/ci/test.sh ${{ matrix.python }} ${{ matrix.mode }}
- name: Codecov
uses: codecov/codecov-action@v3
cryptography:
name: pyca/cryptography test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install tox
run: pip install tox
# pyca/cryptography's CI installs cryptography
# then runs the tests. We therefore didn't include it in tox
- name: Install cryptography
run: pip install cryptography
- name: Run tests
run: tox -e cryptography
# CODE-QL
analyze:
name: CodeQL analysis
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: 'python'
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2