Skip to content

Commit e97d170

Browse files
committed
README updates and travis hook
1 parent f9a65a5 commit e97d170

7 files changed

+30
-1
lines changed

.travis.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
language: python
2+
python:
3+
- "2.6"
4+
- "2.7"
5+
# command to run tests
6+
install:
7+
- pip install -r .travis/requirements_1.4.txt
8+
- pip install -r .travis/requirements_1.5.txt
9+
- pip install -r .travis/requirements_1.6.txt
10+
script:
11+
- python -W error:"":"":0 testproject/manage.py test wiki --settings=testproject.settings.travis
12+
13+

.travis/requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
South
2+

.travis/requirements_1.4.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-r requirements.txt
2+
Django>=1.4,<1.5

.travis/requirements_1.5.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-r requirements.txt
2+
Django>=1.5,<1.6

.travis/requirements_1.6.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-r requirements.txt
2+
Django>=1.6,<1.7

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ Please visit #django-wiki on irc.freenode.net as many django-wiki users are also
5757
*This is a work in progress*
5858
----------------------------
5959

60-
Please refer to the [TODO](https://github.com/benjaoming/django-nyt/blob/master/TODO)
60+
Please refer to the [TODO](https://github.com/benjaoming/django-nyt/blob/master/TODO.md)

TODO.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
TODO
2+
====
3+
4+
* Tests
5+
* Implement optional support for celery
6+
* A custom Model Manager to easily retrive notifications and mark them as read
7+
* Some easy-to-use template tags and templates to override.
8+
* Examples of how to extend

0 commit comments

Comments
 (0)