Add Semaphore CI build status badge

This commit is contained in:
Martin Frost 2015-06-18 18:02:27 +02:00
parent e38b0b6b79
commit a4cddac199
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
# Isn
[![Build Status](https://semaphoreci.com/api/v1/projects/be7c4c34-c49e-45c7-9320-3fcc4f7f476a/458429/badge.svg)](https://semaphoreci.com/frost/isn)
Isn adds a [`Postgrex.Extension`][1] and [`Ecto.Type`][2] definitions
for the datatypes defined in the [`isn`][3] PostgreSQL module.

View File

@ -4,7 +4,7 @@ defmodule IsnTest do
alias Postgrex.Connection, as: P
setup do
options = Keyword.merge(conn_options, [extensions: [{Isn, {}}]])
options = Keyword.merge(conn_options, [extensions: [{Isn, {}}]])
{:ok, pid} = P.start_link(options)
{:ok, [pid: pid]}
end