Skip to content

Commit 39122e2

Browse files
committed
change workflow to run on branch
1 parent bca9baf commit 39122e2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/integration_tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
push:
66
branches:
77
- main
8+
- fix/pg-integ-test-seg-fault
89

910
permissions:
1011
id-token: write # This is required for requesting the JWT
@@ -18,7 +19,7 @@ jobs:
1819
fail-fast: false
1920
matrix:
2021
python-version: [ "3.11", "3.12", "3.13" ]
21-
environment: [ "mysql", "pg" ]
22+
environment: [ "pg" ]
2223

2324
steps:
2425
- name: 'Clone repository'
@@ -72,7 +73,7 @@ jobs:
7273
fail-fast: false
7374
matrix:
7475
python-version: [ "3.11", "3.12", "3.13" ]
75-
environment: [ "mysql", "pg" ]
76+
environment: [ "pg" ]
7677

7778
steps:
7879
- name: 'Clone repository'

tests/integration/container/conftest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363

6464
def _reset_wrapper_state():
6565
"""Reset all wrapper caches, thread pools, and global state.
66-
66+
6767
This should be called after each test to ensure clean state and prevent
6868
background threads from interfering with subsequent tests.
6969
"""
@@ -200,7 +200,6 @@ def pytest_runtest_teardown(item, nextitem):
200200
def pytest_sessionfinish(session, exitstatus):
201201
# Enable all connectivity in case any helper threads are still trying to execute against a disabled host
202202
ProxyHelper.enable_all_connectivity()
203-
204203

205204

206205
def log_exit():

0 commit comments

Comments
 (0)