Skip to content

Commit ab153f9

Browse files
author
Administrator
committed
1 parent 0c41a67 commit ab153f9

File tree

115 files changed

+13156
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+13156
-2
lines changed

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
*.py[co]
2+
3+
# Packages
4+
*.egg
5+
*.egg-info
6+
dist
7+
build
8+
eggs
9+
parts
10+
bin
11+
var
12+
sdist
13+
develop-eggs
14+
.installed.cfg
15+
16+
# Installer logs
17+
pip-log.txt
18+
19+
# Unit test / coverage reports
20+
htmlcov
21+
.coverage*
22+
.tox
23+
24+
#Translations
25+
*.mo
26+
27+
#Mr Developer
28+
.mr.developer.cfg
29+
30+
.DS_Store
31+
.idea
32+
33+
# Ignore user config
34+
user-config.json
35+
userapiconfig.py
36+
usermysql.json

.travis.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
language: python
2+
python:
3+
- 2.6
4+
- 2.7
5+
- 3.3
6+
- 3.4
7+
cache:
8+
directories:
9+
- dante-1.4.0
10+
before_install:
11+
- sudo apt-get update -qq
12+
- sudo apt-get install -qq build-essential dnsutils iproute nginx bc
13+
- sudo dd if=/dev/urandom of=/usr/share/nginx/www/file bs=1M count=10
14+
- sudo sh -c "echo '127.0.0.1 localhost' > /etc/hosts"
15+
- sudo service nginx restart
16+
- pip install pep8 pyflakes nose coverage PySocks cymysql
17+
- sudo tests/socksify/install.sh
18+
- sudo tests/libsodium/install.sh
19+
- sudo tests/setup_tc.sh
20+
script:
21+
- tests/jenkins.sh

0 commit comments

Comments
 (0)