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
|
language: python
matrix:
include:
# Run as a regular user
- os: linux
python: 2.6
- os: linux
python: 2.7
- os: linux
python: pypy
- os: osx
language: generic
env:
- SCAPY_USE_PCAPDNET=yes
# Run as root
- os: linux
sudo: required
python: 2.7
env:
- TRAVIS_SUDO=sudo
- os: linux
sudo: required
python: 2.7
env:
- TRAVIS_SUDO=sudo
- SCAPY_USE_PCAPDNET=yes
- os: osx
language: generic
env:
- TRAVIS_SUDO=sudo
- SCAPY_USE_PCAPDNET=yes
install: bash .travis/install.sh
script: bash .travis/test.sh
|