PortAudio.jl/runtests.sh

12 lines
320 B
Bash
Raw Normal View History

2016-03-20 02:55:35 +01:00
#!/bin/bash
# Runs the tests including generating an lcov.info file
# abort on failure
set -e
julia -e 'using Coverage; clean_folder(".");'
julia --color=yes --inline=no --code-coverage=user test/runtests.jl
mkdir -p coverage
julia -e 'using Coverage; res=process_folder(); LCOV.writefile("coverage/lcov.info", res)'