Skip to content

Commit a0073bb

Browse files
committed
Update CI config
1 parent 3ea3a49 commit a0073bb

File tree

3 files changed

+18
-13
lines changed

3 files changed

+18
-13
lines changed

.circleci/config.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: themattrix/tox
6+
environment: # environment variables for primary container
7+
DATABASE_URL: postgresql://root@localhost/circle_test?sslmode=disable
8+
DB_USER: root
9+
DB_NAME: circle_test
10+
- image: circleci/postgres:9.6.2 # an example of how to specify a service container
11+
environment:
12+
POSTGRES_USER: root
13+
POSTGRES_DB: circle_test
14+
steps:
15+
- checkout
16+
- run: apt-get update && apt-get install -y libpq-dev
17+
- run: tox

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# SQL Views for Postgres
22

3-
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/mypebble/django-pgviews?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4-
[![Circle CI](https://circleci.com/gh/mypebble/django-pgviews.png)](https://circleci.com/gh/mypebble/django-pgviews)
3+
[![Circle CI](https://circleci.com/gh/mikicz/django-pgviews.png)](https://circleci.com/gh/mikicz/django-pgviews)
54

65
Adds first-class support for [PostgreSQL Views][pg-views] in the Django ORM
76

circle.yml

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

0 commit comments

Comments
 (0)