Skip to content

Commit

Permalink
doc: Update native code path in development
Browse files Browse the repository at this point in the history
  • Loading branch information
viirya committed Sep 6, 2024
1 parent 6c2c182 commit cf80b18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/contributor-guide/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ under the License.
```
├── common <- common Java/Scala code
├── conf <- configuration files
├── core <- core native code, in Rust
├── native <- native code, in Rust
├── spark <- Spark integration
```

Expand Down Expand Up @@ -71,7 +71,7 @@ After that you can open the project in CLion. The IDE should automatically detec
### Running Tests in IDEA

Like other Maven projects, you can run tests in IntelliJ IDEA by right-clicking on the test class or test method and selecting "Run" or "Debug".
However if the tests is related to the native side. Please make sure to run `make core` or `cd core && cargo build` before running the tests in IDEA.
However if the tests is related to the native side. Please make sure to run `make core` or `cd native && cargo build` before running the tests in IDEA.

### Running Tests from command line

Expand Down

0 comments on commit cf80b18

Please sign in to comment.