Skip to content

Commit

Permalink
Jive v0.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
wookay committed Jul 21, 2019
1 parent 61e3be7 commit e5bb19d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ keywords = ["distributed", "test"]
license = "MIT"
desc = "some useful steps in tests"
authors = ["WooKyoung Noh <[email protected]>"]
version = "0.1.12-DEV"
version = "0.1.12"

[deps]
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ run the test files from the specific directory.

```julia
using Jive
runtests(@__DIR__, skip=[], node1=[], targets=ARGS)
runtests(@__DIR__)
```
![runtests.svg](https://wookay.github.io/docs/Jive.jl/assets/jive/runtests.svg)

Expand Down Expand Up @@ -84,7 +84,7 @@ using Jive
runtests(@__DIR__, skip=["revise.jl"])

~/.julia/dev/Jive/test/Example/test $ cat revise.jl
# julia -i -q --color=yes --project=.. revise.jl example
# julia -i -q --color=yes --project revise.jl example

using Revise, Jive
using Example
Expand All @@ -101,10 +101,14 @@ trigger("")

Base.JLOptions().isinteractive==0 && wait()

~/.julia/dev/Jive/test/Example/test $ julia -i -q --color=yes --project=.. revise.jl example
~/.julia/dev/Jive/test/Example/test $ julia -i -q --color=yes --project revise.jl example
watching folders ...
- ../src
- example
changed
1/1 example/test1.jl
Pass 1 (0.27 seconds)
✅ All 1 test has been completed. (0.55 seconds)
```

when saving any files in the watching folders, it automatically run tests.
Expand Down
10 changes: 7 additions & 3 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ run the test files from the specific directory.

```julia
using Jive
runtests(@__DIR__, skip=[], node1=[], targets=ARGS)
runtests(@__DIR__)
```
![runtests.svg](https://wookay.github.io/docs/Jive.jl/assets/jive/runtests.svg)

Expand Down Expand Up @@ -79,7 +79,7 @@ using Jive
runtests(@__DIR__, skip=["revise.jl"])

~/.julia/dev/Jive/test/Example/test $ cat revise.jl
# julia -i -q --color=yes --project=.. revise.jl example
# julia -i -q --color=yes --project revise.jl example

using Revise, Jive
using Example
Expand All @@ -96,10 +96,14 @@ trigger("")

Base.JLOptions().isinteractive==0 && wait()

~/.julia/dev/Jive/test/Example/test $ julia -i -q --color=yes --project=.. revise.jl example
~/.julia/dev/Jive/test/Example/test $ julia -i -q --color=yes --project revise.jl example
watching folders ...
- ../src
- example
changed
1/1 example/test1.jl
Pass 1 (0.27 seconds)
✅ All 1 test has been completed. (0.55 seconds)
```

when saving any files in the watching folders, it automatically run tests.
Expand Down
2 changes: 1 addition & 1 deletion test/Example/test/revise.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# julia -i -q --color=yes --project=.. revise.jl example
# julia -i -q --color=yes --project revise.jl example

using Revise, Jive
using Example
Expand Down

0 comments on commit e5bb19d

Please sign in to comment.