Skip to content

Commit ef0ed8a

Browse files
committed
Add CI workflow to run test suite on push to test_dll_issue branch
1 parent c6c137e commit ef0ed8a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/run_tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,11 @@ jobs:
4545
- name: Install ibm_db from source
4646
shell: powershell
4747
run: |
48+
$ErrorActionPreference = "Continue"
4849
python -m ensurepip --upgrade
4950
python -m pip install --upgrade pip
50-
python -m pip install . --verbose 2>&1 | Tee-Object -FilePath install_log.txt
51+
python -m pip install . --verbose
52+
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
5153
5254
- name: Generate config files from secrets
5355
shell: powershell

0 commit comments

Comments
 (0)