Skip to content

Commit 3eadb5a

Browse files
committed
Minor correction for Java test instructions
This is a minor correction to the instructions for running Java tests. The instructions as updated in rapidsai#1004 indicates the following: ``` mvn verify -Dintegration-test=com.nvidia.cuvs.CagraBuildAndSearchIT ``` Per the documentation for the [`failsafe`](https://maven.apache.org/surefire/maven-failsafe-plugin/examples/single-test.html), plugin, this commit changes this to the following: ``` mvn verify -Dit.test=com.nvidia.cuvs.CagraBuildAndSearchIT ```
1 parent 3fcaf8d commit 3eadb5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Run `./build.sh --run-java-tests` from this directory.
2828
To run a single test:
2929
```sh
3030
cd cuvs-java/
31-
mvn verify -Dintegration-test=com.nvidia.cuvs.CagraBuildAndSearchIT
31+
mvn verify -Dit.test=com.nvidia.cuvs.CagraBuildAndSearchIT
3232
```
3333
Be sure to set (manually, if needed) your `LD_LIBRARY_PATH` to include the directory with the appropriate (matching)
3434
version of `libcuvs.so`.

0 commit comments

Comments
 (0)