mirror of https://github.com/secdev/scapy.git
22 lines
414 B
YAML
22 lines
414 B
YAML
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
|
|
|
|
install:
|
|
- bash .config/ci/install.sh
|
|
- python -c "from scapy.all import conf; print(repr(conf))"
|
|
|
|
script: bash .config/ci/test.sh
|