2014-05-02 13:19:42 +08:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- 2.6
|
|
|
|
- 2.7
|
2014-10-31 18:29:27 +08:00
|
|
|
- 3.3
|
|
|
|
- 3.4
|
2014-06-02 18:28:57 +08:00
|
|
|
- pypy
|
2014-07-11 17:35:47 +08:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- dante-1.4.0
|
2014-05-02 13:19:42 +08:00
|
|
|
before_install:
|
|
|
|
- sudo apt-get update -qq
|
2014-07-11 17:41:22 +08:00
|
|
|
- sudo apt-get install -qq build-essential libssl-dev swig python-m2crypto python-numpy dnsutils
|
2014-10-31 16:14:28 +08:00
|
|
|
- pip install m2crypto salsa20 pep8 pyflakes nose
|
2014-07-11 17:35:47 +08:00
|
|
|
- sudo tests/socksify/install.sh
|
2014-05-02 13:19:42 +08:00
|
|
|
script:
|
2014-08-27 00:02:24 +08:00
|
|
|
- pep8 .
|
2014-10-31 16:14:28 +08:00
|
|
|
- pyflakes .
|
2014-11-01 12:52:51 +08:00
|
|
|
- python tests/nose_plugin.py -v
|
2014-11-01 23:47:38 +08:00
|
|
|
- python setup.py sdist
|
2014-07-12 21:59:00 +08:00
|
|
|
- python tests/test.py -c tests/aes.json
|
2014-09-17 00:05:12 +08:00
|
|
|
- python tests/test.py -c tests/aes-ctr.json
|
2014-09-16 10:58:45 +08:00
|
|
|
- python tests/test.py -c tests/aes-cfb1.json
|
|
|
|
- python tests/test.py -c tests/aes-cfb8.json
|
2014-09-09 16:17:33 +08:00
|
|
|
- python tests/test.py -c tests/rc4-md5.json
|
2014-07-12 21:59:00 +08:00
|
|
|
- python tests/test.py -c tests/salsa20.json
|
2014-11-05 18:27:18 +08:00
|
|
|
- python tests/test.py -c tests/table.json
|
2014-07-12 21:59:00 +08:00
|
|
|
- python tests/test.py -c tests/server-multi-ports.json
|
2014-09-20 18:40:35 +08:00
|
|
|
- python tests/test.py -c tests/server-multi-passwd.json tests/server-multi-passwd-client-side.json
|
2014-07-12 21:59:00 +08:00
|
|
|
- python tests/test.py -c tests/workers.json
|