Skip to content

Commit 4e2c569

Browse files
committed
Added badges and fixed Coveralls
1 parent 6c604fa commit 4e2c569

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ matrix:
2424
script:
2525
- JULIA_DEBUG=PersistentCollections JULIA_NUM_THREADS=999999 julia --project --check-bounds=yes -e 'import Pkg; Pkg.activate("."); Pkg.test(coverage=true)'
2626

27-
coveralls: true
27+
after_success:
28+
- if [ "$TRAVIS_OS_NAME" = linux -a "$TRAVIS_CPU_ARCH" = amd64 -a "$TRAVIS_JULIA_VERSION" = 1.5 ]; then julia --project -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'; fi

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# PersistentCollections.jl
22

3+
[![Build Status](https://travis-ci.com/blenessy/PersistentCollections.jl.svg?branch=master)](https://travis-ci.com/blenessy/PersistentCollections.jl) [![Coverage Status](https://coveralls.io/repos/github/blenessy/PersistentCollections.jl/badge.svg?branch=master)](https://coveralls.io/github/blenessy/PersistentCollections.jl?branch=master)
4+
35
Julia `Dict` and `Set` data structures safely persisted to disk.
46

57
All collections are backed by [LMDB](https://en.wikipedia.org/wiki/Lightning_Memory-Mapped_Database) - a super fast B-Tree based embedded KV database with ACID guaranties.

0 commit comments

Comments
 (0)