.travis.yml
language: pythonpython: - "3.5"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-buildscript: - flake8 api_graphql app data_models - yapf -pdr api_graphql app data_models -e '**/migrations' -e '**/snapshots' - isort -c -rc api_graphql app data_models - py.test --cov-report=xmlafter_script: - ./cc-test-reporter after-buildenv: global: - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi)