Skip to content

Commit cde890a

Browse files
committed
ignore driver tests on iodbc
1 parent b955ea1 commit cde890a

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ jobs:
5656
run: curl -L -o sqliteodbc.exe http://www.ch-werner.de/sqliteodbc/sqliteodbc${{ contains(matrix.target, 'x86_64') && '_w64' || '' }}.exe && ./sqliteodbc.exe /S
5757
shell: bash
5858
- run: cargo clippy --all-targets --features "${{ matrix.features }}" -- -D warnings
59-
- run: cargo test -p odbc-sys --target "${{ matrix.target }}" --features "${{ matrix.features }}" -- --include-ignored
59+
- run: cargo test -p odbc-sys \
60+
--target "${{ matrix.target }}" \
61+
--features "${{ matrix.features }}" \
62+
-- ${{ matrix.features != 'iodbc' && '--include-ignored' || '' }} # ignored tests depend on the sqlite driver
6063

6164
# Verify that the build script does nothing nasty, which would prevent publishing to crates.io
6265
test_publish_unix_odbc:

0 commit comments

Comments
 (0)