https://github.com/tobami/codespeed
Raw File
Tip revision: 263860bc298fd970c8466b3161de386582e4f801 authored by Miquel Torres on 17 May 2020, 09:25:47 UTC
Merge pull request #290 from pared/patch-1
Tip revision: 263860b
.travis.yml
language: python
branches:
  only:
    - master
env:
  global:
    - DJANGO_SETTINGS_MODULE=sample_project.settings
matrix:
  include:
    - python: "2.7"
      env: DJANGO_VERSION=1.11
    - python: "3.5"
      env: DJANGO_VERSION=1.11
    - python: "3.5"
      env: DJANGO_VERSION=2.1
install:
  - pip install flake8 mock
  - pip install -q Django==$DJANGO_VERSION
  - python setup.py install
before_script:
   flake8 codespeed
script:
  - python manage.py test codespeed
back to top