scapy/.travis.yml

13 lines
343 B
YAML
Raw Normal View History

sudo: false
language: python
python:
- 2.6
- 2.7
install:
- pip install pycrypto
2016-01-15 12:30:30 +00:00
script: cd test/; for f in *.uts; do ./run_tests -q -F -t $f -K netaccess -K automaton || exit $?; done; for f in ../scapy/contrib/*.uts ; do ./run_tests -q -F -t $f -K netaccess -K automaton -P "load_contrib('$(basename ${f/.uts})')" || exit $?; done