Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Administrator committed Mar 9, 2018
1 parent 0c41a67 commit ab153f9
Show file tree
Hide file tree
Showing 115 changed files with 13,156 additions and 2 deletions.
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
*.py[co]

# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg

# Installer logs
pip-log.txt

# Unit test / coverage reports
htmlcov
.coverage*
.tox

#Translations
*.mo

#Mr Developer
.mr.developer.cfg

.DS_Store
.idea

# Ignore user config
user-config.json
userapiconfig.py
usermysql.json
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
cache:
directories:
- dante-1.4.0
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq build-essential dnsutils iproute nginx bc
- sudo dd if=/dev/urandom of=/usr/share/nginx/www/file bs=1M count=10
- sudo sh -c "echo '127.0.0.1 localhost' > /etc/hosts"
- sudo service nginx restart
- pip install pep8 pyflakes nose coverage PySocks cymysql
- sudo tests/socksify/install.sh
- sudo tests/libsodium/install.sh
- sudo tests/setup_tc.sh
script:
- tests/jenkins.sh
Loading

0 comments on commit ab153f9

Please sign in to comment.