scapy/.travis.yml

14 lines
326 B
YAML
Raw Normal View History

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