We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b955ea1 commit cde890aCopy full SHA for cde890a
1 file changed
.github/workflows/test.yml
@@ -56,7 +56,10 @@ jobs:
56
run: curl -L -o sqliteodbc.exe http://www.ch-werner.de/sqliteodbc/sqliteodbc${{ contains(matrix.target, 'x86_64') && '_w64' || '' }}.exe && ./sqliteodbc.exe /S
57
shell: bash
58
- 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
+ - 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
63
64
# Verify that the build script does nothing nasty, which would prevent publishing to crates.io
65
test_publish_unix_odbc:
0 commit comments