1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-13 07:22:52 +03:00

skip on the codecov report, add travis badge

This commit is contained in:
Wez Furlong 2018-08-04 16:12:53 -07:00
parent aac4c8acbe
commit 14304a6bd7
2 changed files with 2 additions and 15 deletions

View File

@ -20,18 +20,3 @@ script:
- "if [[ \"$TRAVIS_RUST_VERSION\" == \"stable\" ]] ; then cargo fmt --all -- --check ; else true ; fi"
- cargo build --verbose --all
- cargo test --verbose --all
after_success: |
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
tar xzf master.tar.gz &&
cd kcov-master &&
mkdir build &&
cd build &&
cmake .. &&
make &&
make install DESTDIR=../../kcov-build &&
cd ../.. &&
rm -rf kcov-master &&
for file in target/debug/termwiz-*[^\.d]; do mkdir -p "target/cov/$(basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done &&
bash <(curl -s https://codecov.io/bash) &&
echo "Uploaded code coverage"

View File

@ -1,5 +1,7 @@
# Terminal Wizardry
[![Build Status](https://travis-ci.org/wez/termwiz.svg?branch=master)](https://travis-ci.org/wez/termwiz)
This is a rust crate that provides a number of support functions
for applications interesting in either displaying data to a terminal
or in building a terminal emulator.