Tennis in Julia
Start the Julia REPL with the current directory as project root.
julia --project=@.
Once you are in REPL, use the Pkg
module to download the project's dependencies (the Test
module).
using Pkg
Pkg.instantiate()
Using the Julia REPL, use the Pkg
module to run the tests.
using Pkg
Pkg.test()