Skip to content

Commit e53152f

Browse files
committed
Switch from Codecov to Coveralls.
1 parent 57b1844 commit e53152f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ language: swift
33
osx_image: xcode11.3
44
env:
55
- PACKAGE_NAME=csv-dialect-swift
6+
before_install:
7+
- sudo gem install coveralls-lcov
68
script:
79
- swift test --enable-code-coverage
8-
- xcrun llvm-cov show .build/x86_64-apple-macosx/debug/${PACKAGE_NAME}PackageTests.xctest/Contents/MacOS/csv-dialect-swiftPackageTests -instr-profile .build/x86_64-apple-macosx/debug/codecov/default.profdata -ignore-filename-regex="Tests" > ${PACKAGE_NAME}PackageTests.xctest.coverage.txt
10+
- xcrun llvm-cov export -format=lcov -ignore-filename-regex="Tests" -instr-profile .build/debug/codecov/default.profdata .build/debug/${PACKAGE_NAME}PackageTests.xctest/Contents/MacOS/${PACKAGE_NAME}PackageTests > coverage.info
911
after_success:
10-
- bash <(curl -s https://codecov.io/bash) -J ${PACKAGE_NAME} -D ".build/x86_64-apple-macosx/debug/" -X gcov
12+
- coveralls-lcov --repo-token $COVERALLS_TOKEN coverage.info

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# DialectalCSV (`csv-dialect-swift`)
22
[![TravisCI Build Status](https://travis-ci.org/chrispomeroyhale/csv-dialect-swift.svg?branch=master)](https://travis-ci.org/chrispomeroyhale/csv-dialect-swift)
3-
[![Codecov](https://codecov.io/gh/chrispomeroyhale/csv-dialect-swift/branch/master/graph/badge.svg)](https://codecov.io/gh/chrispomeroyhale/csv-dialect-swift)
3+
[![Coverage Status](https://coveralls.io/repos/github/chrispomeroyhale/csv-dialect-swift/badge.svg?branch=master)](https://coveralls.io/github/chrispomeroyhale/csv-dialect-swift?branch=master)
44

55
A multi-[dialect](https://frictionlessdata.io/specs/csv-dialect/) CSV parser written in Swift for importing and exporting the delectable flavors of comma separated values documents.
66

codecov.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)