File: .travis.yml

package info (click to toggle)
flake8-cognitive-complexity 0.1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 116 kB
  • sloc: python: 116; makefile: 7; sh: 5
file content (16 lines) | stat: -rw-r--r-- 436 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: python
python:
  - "3.6"
  - "3.7"
install:
  - gem install mdl
  - pip install -r requirements_dev.txt
  - pip install -e .
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
script:
  - make check
after_script:
  - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT