Skip to content

Commit

Permalink
Configurations for Travis and RTD
Browse files Browse the repository at this point in the history
  • Loading branch information
jstolarski committed Jun 28, 2015
1 parent a1a0f3b commit 3b92eb6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
language: python
env:
- DJANGO_VERSION=1.2.7
- DJANGO_VERSION=1.3.7
- DJANGO_VERSION=1.4.20
- DJANGO_VERSION=1.5.12
- DJANGO_VERSION=1.6.11
- DJANGO_VERSION=1.7.8
- DJANGO_VERSION=1.8.2
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
# command to install dependencies
install:
- "pip install -r test-requirements.txt"
- "pip install coveralls"
- pip install -q Django==$DJANGO_VERSION
- pip install -r test-requirements.txt
- pip install coveralls
# command to run tests
script: coverage run setup.py test
after_success: coveralls
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
install_requires=[
'redis',
'hash_ring',
'Django>=1.2',
],
classifiers=[
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit 3b92eb6

Please sign in to comment.