File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,24 @@ pkg> activate .
6868pkg> test
6969```
7070
71+ Alternatively, if you have
72+ [ ` ReTestItems.jl ` ] ( https://github.com/JuliaTesting/ReTestItems.jl ) ,
73+ [ ` TestEnv.jl ` ] ( https://github.com/JuliaTesting/TestEnv.jl ) , and
74+ [ ` Revise.jl ` ] ( https://timholy.github.io/Revise.jl/stable ) installed, you can use the script
75+ at ` test/quick.jl ` for rapid testing. This allows you to make changes and immediately run the entire test
76+ suite with those changes. The upside to this setup is that the tests will fail fast, and if
77+ you re-run, the tests that failed on the most recent run will run first. This is great if
78+ you're just iterating on one part of the package and trying to get a handful of tests to
79+ pass. You won't waste time on waiting for other tests to pass and you don't have to manually
80+ select which tests you're actively working on.
81+
82+ ``` julia-repl
83+ julia> include("test/quick.jl")
84+ ```
85+
86+ is all you need to get up and running. Rerunning ` include ` will rerun the tests as described
87+ above.
88+
7189## Working on a new issue
7290
7391We try to keep a linear history in this repo, so it is important to keep your branches up-to-date.
You can’t perform that action at this time.
0 commit comments