We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4a512b commit 3452a95Copy full SHA for 3452a95
.github/workflows/main.yml
@@ -37,7 +37,10 @@ jobs:
37
- name: Build (openvino-sys from source)
38
run: cargo build --verbose --features openvino-sys/from-source
39
- name: Run tests
40
- run: cargo test --verbose --features openvino-sys/from-source
+ # For some reason the library path is not set during the doc tests (`--doc`, see
41
+ # https://doc.rust-lang.org/cargo/commands/cargo-test.html#target-selection) so we skip them
42
+ # here: issue at https://github.com/intel/openvino-rs/issues/25.
43
+ run: cargo test --verbose --features openvino-sys/from-source --lib --tests
44
45
# Build and test from an existing OpenVINO installation inside a Docker image (i.e. download the
46
# binaries, then compile against these).
0 commit comments