Merge pull request #27 from Dunedan/travisci-support
Add Travis CI support
This commit is contained in:
commit
1137b97239
|
@ -0,0 +1,12 @@
|
|||
language: python
|
||||
python:
|
||||
- "2.7"
|
||||
env:
|
||||
- DJANGO="Django>=1.6,<1.7"
|
||||
- DJANGO="Django>=1.7,<1.8"
|
||||
- DJANGO="Django>=1.8,<1.9"
|
||||
install:
|
||||
- pip install -q $DJANGO
|
||||
- pip install -r requirements.txt
|
||||
script:
|
||||
- python manage.py test
|
|
@ -1,5 +1,7 @@
|
|||
# Binder #
|
||||
|
||||
[![Build Status](https://travis-ci.org/jforman/binder.svg?branch=master)](https://travis-ci.org/jforman/binder)
|
||||
|
||||
A Django web application for viewing and editing BIND DNS zone records.
|
||||
|
||||
Binder supports adding and deleting DNS records (and eventually editing in place). TSIG-authenticated transfers and updates are supported.
|
||||
|
|
Loading…
Reference in New Issue