From 3742457ad747a679b158e003abc30227a43b735a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BD=A6=E4=BA=AE=E4=BA=AE?= Date: Fri, 24 Feb 2017 00:56:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9A=82=E6=97=B6=E5=88=A0=E9=99=A4travis?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .travis.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 3a6c57a..0000000 --- a/.travis.yml +++ /dev/null @@ -1,28 +0,0 @@ -language: python -python: - - "3.5" - - "3.6" -env: - matrix: - - DJANGO="Django<1.9" - - DJANGO="Django<1.10" - - DJANGO="Django<1.11" -branches: - only: - - master -# command to install dependencies -install: - - pip install -r requirements.txt - - pip install "$DJANGO" - - pip install python-coveralls - - pip install coverage -before_script: - - mysql -e 'create database djangoblog;' - - python manage.py migrate - - python manage.py collectstatic --noinput - - python manage.py compress --force -# command to run tests -script: - - coverage run manage.py test -after_success: - - coveralls