Skip to content

Commit

Permalink
Remove tox, add travis
Browse files Browse the repository at this point in the history
  • Loading branch information
tomchristie committed Sep 4, 2012
1 parent 407934e commit e4e280b
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 67 deletions.
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -2,5 +2,4 @@
MANIFEST
dist/
build/
.tox/
*.egg-info/
11 changes: 11 additions & 0 deletions .travis.yml
@@ -0,0 +1,11 @@
language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO_VERSION=1.3
- DJANGO_VERSION=1.4
install:
- pip install -q Django==$DJANGO_VERSION --use-mirrors
- pip install -q -r requirements.txt --use-mirrors
script: python manage.py test
26 changes: 0 additions & 26 deletions LICENSE

This file was deleted.

14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -14,7 +14,7 @@ Includes:

1. A `setup.py` that makes your life easy and doesn't suck.
2. A simple layout that lets you run the app's tests without installing it into an existing project.
3. A `tox` config to allow you to run your tests against multiple environments.
3. A sample `.travis.yml` config file.

Creating a new app
==================
Expand Down Expand Up @@ -49,15 +49,15 @@ To run the tests against the current environment:

./manage.py test

To run the tests against multiple environments, install `tox` using
`pip install tox`, make sure you're not currently in a virtual environment,
then simply run `tox`:

tox

Changelog
=========

1.1.0
-----

* Remove tox, add travis
* Remove seperate LICENSE

1.0.1
-----

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1 +1 @@
django>=1.3
Django>=1.3
32 changes: 0 additions & 32 deletions tox.ini

This file was deleted.

0 comments on commit e4e280b

Please sign in to comment.