Browse Source

Added build files

pull/5/head v0.1.0
Miguel Grinberg 10 years ago
parent
commit
7195217b3b
  1. 12
      .travis.yml
  2. 1
      MANIFEST.in
  3. 56
      tox.ini

12
.travis.yml

@ -0,0 +1,12 @@
language: python
env:
- TOXENV=flake8
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=pypy
- TOXENV=docs
install:
- pip install tox
script:
- tox

1
MANIFEST.in

@ -0,0 +1 @@
include README.md LICENSE

56
tox.ini

@ -0,0 +1,56 @@
[tox]
envlist=flake8,py27,py33,py34,pypy,docs,coverage
skip_missing_interpreters=True
[testenv]
commands=
coverage run --branch --include="socketio/*" setup.py test
coverage report --show-missing
coverage erase
[testenv:flake8]
basepython=python
deps=
flake8
commands=
flake8 --exclude=".*" socketio tests example
[testenv:py27]
basepython=python2.7
deps=
coverage
mock
[testenv:py33]
basepython=python3.3
deps=
coverage
[testenv:py34]
basepython=python3.4
deps=
coverage
[testenv:pypy]
basepython=pypy
deps=
coverage
[testenv:docs]
basepython=python2.7
changedir=docs
deps=
sphinx
whitelist_externals=
make
commands=
make html
[testenv:coverage]
basepython=python
deps=
coverage
commands=
coverage run --branch --source=socketio setup.py test
coverage html
coverage erase
Loading…
Cancel
Save