diff --git a/Project.toml b/Project.toml index 9734bd6..18369fd 100644 --- a/Project.toml +++ b/Project.toml @@ -4,7 +4,7 @@ keywords = ["distributed", "test"] license = "MIT" desc = "some useful steps in tests" authors = ["WooKyoung Noh "] -version = "0.2.2-DEV" +version = "0.2.2" [deps] Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b" diff --git a/README.md b/README.md index 95eb34c..715c2fa 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ # runtests -run the test files from the specific directory. +run the test files in a specific directory and path. ```julia using Jive diff --git a/docs/src/index.md b/docs/src/index.md index a8cb76b..846fab7 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -19,7 +19,7 @@ # runtests -run the test files from the specific directory. +run the test files in a specific directory and path. ```julia using Jive diff --git a/test/test/broken.jl b/test/test/broken.jl new file mode 100644 index 0000000..021941b --- /dev/null +++ b/test/test/broken.jl @@ -0,0 +1,8 @@ +module test_test_broken + +using Test + +@test_broken 1 == 2 +@test_skip 1 == 2 + +end # module test_test_broken