Skip to content

Commit

Permalink
Enable "future" feature on the coverage CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsuya6502 committed Feb 13, 2021
1 parent 0f2ff93 commit df506b3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .circleci/config.yml
Expand Up @@ -5,8 +5,14 @@ jobs:
steps:
- checkout
- run:
name: Coverage with docker
command: docker run --security-opt seccomp=unconfined -v "${PWD}:/volume" xd009642/tarpaulin cargo tarpaulin -v --ciserver circle-ci --coveralls ${COVERALLS_TOKEN} --timeout 600
name: Run cargo tarpaulin
command: |
docker run --security-opt seccomp=unconfined -v "${PWD}:/volume" xd009642/tarpaulin \
cargo tarpaulin -v \
--features future \
--ciserver circle-ci \
--coveralls ${COVERALLS_TOKEN} \
--timeout 600
workflows:
build:
Expand Down

0 comments on commit df506b3

Please sign in to comment.