Skip to content

Commit

Permalink
things
Browse files Browse the repository at this point in the history
  • Loading branch information
arbroen committed Dec 5, 2023
1 parent f5acbfd commit 10558a2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,5 @@ Thumbs.db
.tox

# integration test data
tests/data/integration
tests/data/integration
coverage.xml
3 changes: 2 additions & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ sonar.organization=isharescheme
#sonar.sources=.

# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8
#sonar.sourceEncoding=UTF-8
sonar.python.coverage.reportPaths=coverage.xml
2 changes: 0 additions & 2 deletions src/python_ishare/verification.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import base64
import re
from typing import Any, Literal

import jwt
from cryptography.x509 import load_der_x509_certificate
from jwt import ExpiredSignatureError, ImmatureSignatureError, InvalidAudienceError

from python_ishare import exceptions as ishare_exc
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ deps = poetry
allowlist_externals =
poetry
commands =
poetry run pytest {posargs:./tests/unit}
poetry run pytest --cov-report=xml --cov-report=html {posargs:./tests/unit}

[testenv:linters]
description = Basic linting checks
Expand Down

0 comments on commit 10558a2

Please sign in to comment.