I have a problem with tests and namespaced reversed urls.
It fails tests.
However when running a server they works properly.
I have tried
#urls.py
url(r'^', include('ns.urls', namespace="ns"), name="ns"),
#ns/urls.py
url(r'name/$', NameView.as_view(), name='home'),
#template.html
{% url ns:home %}
and
{% load url from future %}
{% url "ns:home" %}