Skip to content

Commit 80ffac9

Browse files
committed
fix static check
1 parent 93d720e commit 80ffac9

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

.github/workflows/integration_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
push:
66
branches:
77
- main
8-
- feat/tortoise
8+
# - feat/tortoise
99

1010
permissions:
1111
id-token: write # This is required for requesting the JWT

aws_advanced_python_wrapper/sqlalchemy_driver_dialect.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
from aws_advanced_python_wrapper.hostinfo import HostInfo
2121
from aws_advanced_python_wrapper.pep249 import Connection
2222
from aws_advanced_python_wrapper.utils.properties import Properties
23-
from types import ModuleType
2423

2524
from sqlalchemy import PoolProxiedConnection
2625

tests/integration/container/test_iam_authentication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def test_iam_wrong_database_username(self, test_environment: TestEnvironment,
6868
params = conn_utils.get_connect_params(user=user)
6969
params.pop("use_pure", None) # AWS tokens are truncated when using the pure Python MySQL driver
7070

71-
with pytest.raises(AwsWrapperError):
71+
with pytest.raises(Exception):
7272
AwsWrapperConnection.connect(
7373
target_driver_connect,
7474
**params,

tests/integration/container/tortoise/test_tortoise_failover.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
TestEnvironmentFeatures
3838
from tests.integration.container.utils.test_utils import get_sleep_trigger_sql
3939

40-
4140
# Global configuration for failover tests
4241
FAILOVER_SLEEP_TIME = 10 # seconds to wait before triggering failover
4342
CONCURRENT_THREAD_COUNT = 5 # number of concurrent threads/queries to spawn

0 commit comments

Comments
 (0)