Skip to content

Commit c9580ee

Browse files
fix
1 parent f1ccb28 commit c9580ee

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/preview-env.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -388,8 +388,7 @@ jobs:
388388
MTLS_CERT: /tmp/client1-cert.pem
389389
MTLS_KEY: /tmp/client1-key.pem
390390
run: |
391-
touch .env.remote
392-
make test-remote
391+
make test-integration
393392
394393
- name: Upload integration test results
395394
if: always()

gateway-api/src/gateway_api/clinical_jwt/jwt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def exp_time(self) -> str:
3636
def encode(self) -> str:
3737
return pyjwt.encode(
3838
self.payload(),
39-
key=None, # type: ignore
39+
key=None, # type: ignore[arg-type]
4040
algorithm=self.algorithm,
4141
headers={"typ": self.type},
4242
)

0 commit comments

Comments
 (0)