From 7c0df3201e7180fb0131f7ded1ae13c9251fb2ef Mon Sep 17 00:00:00 2001 From: Silvio Leite Date: Fri, 16 Nov 2018 16:12:22 -0200 Subject: [PATCH] Fix travis.yml --- .travis.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index dd1f562..7c2c0dd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,18 @@ language: python +dist: trusty +sudo: required +group: edge python: - "3.6" env: - DJANGO_VERSION=2.0 - global: - - CC_TEST_REPORTER_ID=6c015c866a94cfb5b7a046e9a0725a6a02224b1023eeef9ea2db63426beb3fd3 + - CC_TEST_REPORTER_ID=6c015c866a94cfb5b7a046e9a0725a6a02224b1023eeef9ea2db63426beb3fd3 install: - pip install Django==$DJANGO_VERSION - pip install tox-travis - pip install -q -r requirements-dev.txt - pip install coverage -before_script: # code coverage tool +before_script: - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter - ./cc-test-reporter before-build