We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1ccb28 commit c9580eeCopy full SHA for c9580ee
2 files changed
.github/workflows/preview-env.yml
@@ -388,8 +388,7 @@ jobs:
388
MTLS_CERT: /tmp/client1-cert.pem
389
MTLS_KEY: /tmp/client1-key.pem
390
run: |
391
- touch .env.remote
392
- make test-remote
+ make test-integration
393
394
- name: Upload integration test results
395
if: always()
gateway-api/src/gateway_api/clinical_jwt/jwt.py
@@ -36,7 +36,7 @@ def exp_time(self) -> str:
36
def encode(self) -> str:
37
return pyjwt.encode(
38
self.payload(),
39
- key=None, # type: ignore
+ key=None, # type: ignore[arg-type]
40
algorithm=self.algorithm,
41
headers={"typ": self.type},
42
)
0 commit comments