Add interactive usage example#60
Conversation
Added instructions for interactive test execution using Pkg.
|
May be worth documenting: I have a shell alias for that function jltest {
julia=(julia)
# certain arguments (like those beginnning with a +) need to come first
if [[ $# -gt 0 && "$1" = +* ]]; then
julia+=("$1")
shift
fi
"${julia[@]}" --startup-file=no --project -e "using Pkg; Pkg.API.test(; test_args=ARGS)" "$@"
}... which allows me to do things like |
|
Oh, cool! Thanks for the tip, def adding this to my .bashrc Would something like this make sense for the README? I wasn't sure if there was a way to pass |
Yes, if you do |
|
Oh whoops, the one combo I didn't try 🤦🏾♂️. Thanks, this is really cool! Just updated the example 7eea058 |
Hi all, thanks for this package!
After some prompting from Mosè, I added this brief usage example in case it might be useful for other folks. Happy to make any edits