Skip to content

Commit 4e280e2

Browse files
committed
Add CI workflow to run test suite on push to test_dll_issue branch
1 parent f306230 commit 4e280e2

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/run_tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,5 +149,9 @@ jobs:
149149
env:
150150
DB2_USER: ${{ secrets.DB2_USER }}
151151
DB2_PASSWD: ${{ secrets.DB2_PASSWD }}
152-
SINGLE_PYTHON_TEST: ${{ github.event.inputs.test-pattern }}
153-
run: python ibmdb_tests.py
152+
run: |
153+
TEST_PATTERN="${{ github.event.inputs.test-pattern }}"
154+
if [ -n "$TEST_PATTERN" ]; then
155+
export SINGLE_PYTHON_TEST="$TEST_PATTERN"
156+
fi
157+
python ibmdb_tests.py

0 commit comments

Comments
 (0)