Skip to content

Commit

Permalink
Added basic CI process.
Browse files Browse the repository at this point in the history
  • Loading branch information
thedrow committed Mar 28, 2015
1 parent 1747297 commit 8b6b09c
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
language: python
python:
- '2.7'
sudo: false
env:
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=pypy
- TOX_ENV=pypy3

install: pip install tox>=1.9.2

script: tox -e $TOX_ENV
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from setuptools import setup, find_packages

setup(name='cache-version',
packages=find_packages(exclude='tests'),
version='0.1.0',
author='Omer Katz',
author_email='omer.drow@gmail.com',
license='BSD3',
include_package_data=True,
)
6 changes: 6 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[tox]
envlist = py27, py33, py34, pypy, pypy3

[testenv]
deps=-rrequirements/testing.txt
commands=py.test tests

0 comments on commit 8b6b09c

Please sign in to comment.