Skip to content

Commit

Permalink
Merge pull request #8 from turboladen/feature/gh-6
Browse files Browse the repository at this point in the history
Add nvim_test-proc_macro
  • Loading branch information
turboladen authored Dec 11, 2021
2 parents 2c11411 + 8ba4ae2 commit 6ec5f75
Show file tree
Hide file tree
Showing 10 changed files with 182 additions and 299 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ jobs:

- name: Run miri test
uses: actions-rs/cargo@v1
env:
RUST_BACKTRACE: 1
with:
toolchain: nightly
command: miri
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[workspace]
members = ["neovim_sys", "nvim_api", "overkill_nvim"]
members = ["neovim_sys", "nvim_api", "overkill_nvim", "nvim_api_test"]
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ test-miri:
cargo +nightly miri test --workspace

test-lua:
cargo build --features lua_test --package nvim-api --package overkill-nvim
cargo build --features lua_test --package nvim_api --package overkill_nvim
nvim --headless -n -c "PlenaryBustedDirectory tests/plenary {minimal_init = 'tests/minimal_init.vim'}"

fix-clippies:
Expand Down
1 change: 1 addition & 0 deletions nvim_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
approx = { version = "0.5", optional = true }
neovim_sys = { path = "../neovim_sys" }
nvim_api_test = { path = "../nvim_api_test" }
thiserror = "1.0"

[features]
Expand Down
Loading

0 comments on commit 6ec5f75

Please sign in to comment.