Skip to content

Commit

Permalink
Internal routing options group partially described.
Browse files Browse the repository at this point in the history
  • Loading branch information
idlesign committed Jul 23, 2017
1 parent 20ed5da commit bf51278
Show file tree
Hide file tree
Showing 10 changed files with 1,453 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ uwsgiconf changelog

Unreleased
----------
+ Internal routing options group partially described.
+ Cheapening options group described.


Expand Down
6 changes: 6 additions & 0 deletions docs/source/grp_routing.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Routing
=======

.. automodule:: uwsgiconf.options.routing
:members:

1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ API
grp_monitoring
grp_networking
grp_queue
grp_routing
grp_spooler
grp_workers
grp_python
Expand Down
8 changes: 4 additions & 4 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
@pytest.fixture(scope='session')
def ini():

def wrapped(section):
return section.as_configuration().format()
def wrapped(section, stamp):
return section.as_configuration().format(stamp=stamp)

return wrapped


@pytest.fixture(scope='session')
def assert_lines(ini):

def wrapped(lines, source, assert_in=True):
source = ini(source)
def wrapped(lines, source, assert_in=True, stamp=False):
source = ini(source, stamp)

if not isinstance(lines, list):
lines = [lines]
Expand Down

0 comments on commit bf51278

Please sign in to comment.