Skip to content

Commit

Permalink
Merge pull request #10 from kishaningithub/codecov_integration
Browse files Browse the repository at this point in the history
Codecov integration
  • Loading branch information
Aswin Karthik committed May 2, 2018
2 parents 2621f31 + a627756 commit 5365669
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ out/
# End of https://www.gitignore.io/api/go

vendor/
coverage.txt

majestic_million*.csv
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ install:
- curl https://glide.sh/get | sh
- glide install
script:
- go test -v ./...
- go test -race -coverprofile=coverage.txt -covermode=atomic -v ./...
after_success:
- curl -sL https://codecov.io/bash | bash
- bash -l ./release.sh
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
[![Build Status](https://travis-ci.org/aswinkarthik93/csvdiff.svg?branch=master)](https://travis-ci.org/aswinkarthik93/csvdiff)
[![Go Doc](https://godoc.org/github.com/aswinkarthik93/csvdiff?status.svg)](https://godoc.org/github.com/aswinkarthik93/csvdiff)
[![Go Report Card](https://goreportcard.com/badge/github.com/aswinkarthik93/csvdiff)](https://goreportcard.com/report/github.com/aswinkarthik93/csvdiff)
[![codecov](https://codecov.io/gh/aswinkarthik93/csvdiff/branch/master/graph/badge.svg)](https://codecov.io/gh/aswinkarthik93/csvdiff)
[![Downloads](https://img.shields.io/github/downloads/aswinkarthik93/csvdiff/latest/total.svg)](https://github.com/aswinkarthik93/csvdiff/releases)
[![Latest release](https://img.shields.io/github/release/aswinkarthik93/csvdiff.svg)](https://github.com/aswinkarthik93/csvdiff/releases)

Expand All @@ -12,10 +13,10 @@ A Blazingly fast diff tool for comparing csv files.

Csvdiff is a difftool to compute changes between two csv files.

* It is not a traditional diff tool. It is most suitable for comparing csv files dumped from database tables. GNU diff tool is orders of magnitude faster on comparing line by line.
* Supports specifying group of columns as primary-key.
* Supports selective comparison of fields in a row.
* Compares csvs of million records csv in under 2 seconds. Comparisons and benchmarks [here](/benchmark).
- It is not a traditional diff tool. It is most suitable for comparing csv files dumped from database tables. GNU diff tool is orders of magnitude faster on comparing line by line.
- Supports specifying group of columns as primary-key.
- Supports selective comparison of fields in a row.
- Compares csvs of million records csv in under 2 seconds. Comparisons and benchmarks [here](/benchmark).

## Demo

Expand Down Expand Up @@ -47,7 +48,7 @@ yum install https://github.com/aswinkarthik93/csvdiff/releases/download/v1.0.0/c

- For debian

```
```bash
curl -sL https://github.com/aswinkarthik93/csvdiff/releases/download/v1.0.0/csvdiff_1.0.0_linux_64-bit.deb -O
dpkg --install csvdiff_*_linux_64-bit.deb
```
Expand All @@ -62,7 +63,7 @@ curl -sL https://github.com/aswinkarthik93/csvdiff/releases/download/v1.0.0/csvd

- Build using Go

```
```bash
go get -u github.com/aswinkarthik93/csvdiff
```

Expand Down

0 comments on commit 5365669

Please sign in to comment.