1language: python 2dist: bionic # OpenSSL 1.1.1 3cache: 4 directories: 5 - $HOME/.cache/pip 6 - .tox 7 8jobs: 9 include: 10 # run custom root tests 11 # isotp 12 - os: linux 13 python: 3.8 14 env: 15 - TOXENV=py38-isotp_kernel_module,codecov 16 17install: 18 - bash .config/ci/install.sh 19 - python -c "from scapy.all import conf; print(repr(conf))" 20 21script: bash .config/ci/test.sh 22