-
-
Notifications
You must be signed in to change notification settings - Fork 339
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NoReverseMatch: Reverse for 'summary' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: [] #74
Comments
@a1Gupta apologies for the delay in getting to this - have you added silk to your url patterns? |
Also - which django version? |
@mtford90 yes I did and I am using Django 1.7.7 |
We are also having this issue, using Django 1.8. |
I faced this as well; although the docs imply otherwise, seems like the app's endpoints are not optional. Just imported them into my |
@ElSaico Can you point to me where in the docs it says app's endpoints are optional? Maybe a result of this issue is to change the expectation for proper installation. |
Also seeing this on 1.11.1 - is there a fix or workaround? I followed the install docs
|
@matthewhegarty What version of Django are you using? I wonder if the url patterns needs to be re-assessed with a configuration checker on config initialization. |
@avelis Django version 1.11.1 |
I am getting the same issue when running tests with pytest:
|
I had this issue with running unit tests in Django 1.11.14 and python 2.7.13. I found that it occurred because I have different settings files for production and test servers and only want the test servers to use silk. I also only wanted to add the silk urlpatterns on test servers, which I handled by implementing an However, it seems that running unit tests in Django sets My problem was solved by adding the |
@tprestegard I am also facing the same issue! How do I run pytest in DEBUG MODE ? |
@xahin96 I'm not sure whether that's possible. I ended up just doing the check like I see that #86 was merged since my previous post, so I would think this is fixed in a more recent version of this package, but I can't say for certain from personal experience. If so, this issue could potentially be closed. |
I am getting NoReverseMatch error. I tried placing middleware at top but its giving same error.
These are my middleware classes:
and its the traceback-
Is this error due to middleware placement or its some other issue ?
The text was updated successfully, but these errors were encountered: