Skip to content
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

Added blank likes to fix linting error in Azure DevOps #12

Merged
merged 1 commit into from
Feb 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/test_endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,14 @@ def test_app_level0(nhsd_apim_proxy_url, nhsd_apim_auth_headers):
resp = requests.get(f"{nhsd_apim_proxy_url}", headers=nhsd_apim_auth_headers)
assert resp.status_code == 401 # unauthorized


@pytest.mark.skip(reason="TBC: Are we supporting Application level 3 access to the API?")
@pytest.mark.nhsd_apim_authorization({"access": "application", "level": "level3"})
def test_app_level3(nhsd_apim_proxy_url, nhsd_apim_auth_headers):
resp = requests.get(f"{nhsd_apim_proxy_url}", headers=nhsd_apim_auth_headers)
assert resp.status_code == 200


@pytest.mark.skip(reason="Requires API key to be shared with proxy and decision on endpoint and user to use")
@pytest.mark.nhsd_apim_authorization(
{
Expand Down
Loading