From e3c6bad9f5575a655dbc4879c0d2504cec954758 Mon Sep 17 00:00:00 2001 From: Colin Dellow Date: Thu, 5 Jul 2018 09:17:19 -0400 Subject: [PATCH] Add status badge, run tests Fixes #16 Fixes #18 --- README.md | 2 ++ travis-linux | 1 + 2 files changed, 3 insertions(+) diff --git a/README.md b/README.md index 2ce18a9..ee4259d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # sqlite-parquet-vtable +[![Build Status](https://travis-ci.org/cldellow/sqlite-parquet-vtable.svg?branch=master)](https://travis-ci.org/cldellow/sqlite-parquet-vtable) + A SQLite [virtual table](https://sqlite.org/vtab.html) extension to expose Parquet files as SQL tables. You may also find [csv2parquet](https://github.com/cldellow/csv2parquet/) useful. This [blog post](https://cldellow.com/2018/06/22/sqlite-parquet-vtable.html) provides some context on why you might use this. diff --git a/travis-linux b/travis-linux index 2b768db..81f26f6 100755 --- a/travis-linux +++ b/travis-linux @@ -5,3 +5,4 @@ sudo apt-get install software-properties-common sudo add-apt-repository --yes ppa:george-edison55/cmake-3.x sudo apt-get update PREBUILT=1 ./make-linux +./tests/test-all