mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-05 19:59:30 +00:00
eabe73ddc0
* begin setup front-end test environment with selenium * run migrations before tests * use https for tests
10 lines
250 B
Bash
Executable file
10 lines
250 B
Bash
Executable file
#!/bin/bash
|
|
set -eo pipefail
|
|
for file in target/debug/*-*[^\.d]; do
|
|
if [[ -x "$file" ]]
|
|
then
|
|
filename=$(basename $file)
|
|
mkdir -p "target/cov/$filename"
|
|
kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$filename" "$file"
|
|
fi
|
|
done
|