You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Made a contribution recently, but when I tried to run the tests, I get python_http_client.exceptions.UnauthorizedError: HTTP Error 401: UNAUTHORIZED several times. This happened to me on two free accounts. Still new, so it's possible I might've did something wrong. I attempted to contact support a few times about this and unlocking my account, but haven't gotten any response and it's been over a week.
Steps to Reproduce
Create new free SendGrid account
Run python -m pip install -r requirements.txt
Run python -m unittest discover -v
Exception/Log
There's 231 failing out of the 305 tests, so I'll show one example
======================================================================
ERROR: test_whitelabel_links_subuser_get (test.test_sendgrid.UnitTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/johncalhoun/Documents/Projects/sendgrid-python/test/test_sendgrid.py", line 2248, in test_whitelabel_links_subuser_get
query_params=params, request_headers=headers)
File "/usr/local/lib/python3.7/site-packages/python_http_client/client.py", line 262, in http_request
self._make_request(opener, request, timeout=timeout)
File "/usr/local/lib/python3.7/site-packages/python_http_client/client.py", line 178, in _make_request
raise exc
python_http_client.exceptions.UnauthorizedError: HTTP Error 401: UNAUTHORIZED
The integration tests attempt to hit the real SendGrid API endpoint. You can use Docker to mock/proxy this instead. Run all tests using make test-docker
@childish-sambino This worked really well. Was able to manually make tests fail and everything. Was looking around and this doesn't seem to be in any of the docs. Would it be useful to add this to TROUBLESHOOTING.md or docker-test/README.md?
Issue Summary
Made a contribution recently, but when I tried to run the tests, I get
python_http_client.exceptions.UnauthorizedError: HTTP Error 401: UNAUTHORIZED
several times. This happened to me on two free accounts. Still new, so it's possible I might've did something wrong. I attempted to contact support a few times about this and unlocking my account, but haven't gotten any response and it's been over a week.Steps to Reproduce
python -m pip install -r requirements.txt
python -m unittest discover -v
Exception/Log
There's 231 failing out of the 305 tests, so I'll show one example
Technical details:
The text was updated successfully, but these errors were encountered: