Skip to content

Commit

Permalink
fixed travus
Browse files Browse the repository at this point in the history
  • Loading branch information
tarekziade committed Apr 17, 2017
1 parent a056af9 commit ca20a0e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
15 changes: 11 additions & 4 deletions .travis.yml
@@ -1,15 +1,22 @@
language: python
sudo: false
python: 2.7
env:
- TOX_ENV=py27
- TOX_ENV=py35
- TOX_ENV=flake8
- TOX_ENV=docs
addons:
apt:
packages:
- libev-dev
- libevent-dev
install:
- python setup.py develop
- pip install tox
script: tox
- python setup.py develop
- pip install tox
script: tox -e $TOX_ENV
after_success:
- pip install coveralls
- coveralls
notifications:
email: tarek@mozilla.com
irc: "irc.freenode.org#mozilla-circus"
Expand Down
3 changes: 2 additions & 1 deletion chaussette/server.py
Expand Up @@ -29,8 +29,9 @@ def make_server(app, host=None, port=None, backend='wsgiref', backlog=2048,
'backlog': backlog,
'address_family': address_family,
'socket_type': socket_type,
'disable_monkeypatch' : disable_monkeypatch
'disable_monkeypatch': disable_monkeypatch
}

if spawn is not None:
server_class_kwargs['spawn'] = spawn
if graceful_timeout is not None:
Expand Down

0 comments on commit ca20a0e

Please sign in to comment.