summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml4
-rw-r--r--abnf_to_pest/src/lib.rs1
-rw-r--r--dhall_generator/src/lib.rs1
3 files changed, 1 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index f2db830..bdd8b65 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,10 +14,8 @@ install:
- cargo tarpaulin --version || RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo install cargo-tarpaulin
script:
-- cargo test --release --all --all-features
+- cargo tarpaulin -v --release --all-features --all --exclude-files dhall_generator/* --exclude-files abnf_to_pest/* --out Xml
after_success: |
- cargo tarpaulin --release --all --all-features --ciserver travis-ci --coveralls $TRAVIS_JOB_ID
- cargo tarpaulin --release --all --all-features --out Xml
bash <(curl -s https://codecov.io/bash)
diff --git a/abnf_to_pest/src/lib.rs b/abnf_to_pest/src/lib.rs
index bb2e7c7..b2fcbbd 100644
--- a/abnf_to_pest/src/lib.rs
+++ b/abnf_to_pest/src/lib.rs
@@ -1,5 +1,4 @@
#![allow(clippy::implicit_hasher, clippy::or_fun_call)]
-#![cfg_attr(tarpaulin, skip)]
use abnf::abnf::Rule;
pub use abnf::abnf::{
Alternation, Concatenation, Element, Range, Repeat, Repetition,
diff --git a/dhall_generator/src/lib.rs b/dhall_generator/src/lib.rs
index a3d77a4..107144c 100644
--- a/dhall_generator/src/lib.rs
+++ b/dhall_generator/src/lib.rs
@@ -1,4 +1,3 @@
-#![cfg_attr(tarpaulin, skip)]
extern crate proc_macro;
use dhall_core::context::Context;
use dhall_core::*;