Skip to content

Commit 5cf284b

Browse files
authored
Merge pull request #41 from alexei/feature/travis
Setup TravisCI
2 parents e28e684 + db0b63b commit 5cf284b

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: python
2+
python:
3+
# - "2.6"
4+
- "2.7"
5+
- "3.3"
6+
- "3.4"
7+
- "3.5"
8+
- "3.5-dev"
9+
- "3.6"
10+
- "3.6-dev"
11+
- "3.7-dev"
12+
- "nightly"
13+
install:
14+
- pip install -r requirements.txt
15+
script:
16+
- python -m unittest discover tests

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# Adapters
22

3+
[![Build Status](https://travis-ci.org/alexei/python-adapters.svg?branch=master)](https://travis-ci.org/alexei/python-adapters)
4+
35
Adapters allow converting data from one structure to another.
46

5-
The adapters work very similar to `Serializers` in Django REST framework. They are not tied with Django nor DRF in any way, instead they probide a generic way of transforming an object to another.
7+
The adapters work very similar to `Serializers` in Django REST framework. They are not tied with Django nor DRF in any way, instead they provide a generic way of transforming an object to another.
68

79
The are intended to be used when working with 3rd party APIs and as View-Models.
810

0 commit comments

Comments
 (0)