diff --git a/docs/about.rst b/docs/about.rst index 65e1948..0b9756a 100644 --- a/docs/about.rst +++ b/docs/about.rst @@ -18,8 +18,8 @@ To install from source :: From source:: - wget https://github.com/belug23/django-epiced/archive/0.2.tar.gz - tar -zxvf 0.2.tar.gz + wget https://github.com/belug23/django-epiced/archive/0.3.0.tar.gz + tar -zxvf 0.3.0.tar.gz cd django-epiced python setup.py install diff --git a/test_site/.travis.yml b/test_site/.travis.yml new file mode 100644 index 0000000..a10352e --- /dev/null +++ b/test_site/.travis.yml @@ -0,0 +1,15 @@ +language: python +python: + - "2.7" + - "3.4" + - "3.5" + - "3.6" + +install: "pip install -r requirements.txt" + +script: "coverage run manage.py test --settings=test_site.settings" + +# safe list +branches: + only: + - master diff --git a/test_site/requirements.txt b/test_site/requirements.txt index 6bd28ec..d2a0523 100644 --- a/test_site/requirements.txt +++ b/test_site/requirements.txt @@ -1,5 +1,6 @@ -Django==1.11.8 +Django<=1.11.11,>=1.8 Markdown -distribute -django-epiced==0.4.2 +django-epiced==0.3.0 psycopg2==2.7.3 +codecov<2.1,>=2.0.5 +coverage<4.4,>=4.3.4