-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
36 lines (28 loc) · 1.38 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
dist: bionic
language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- python -m pip install --upgrade pip
- pip install -r requirements.txt --upgrade
- pip install -e .[dev,test]
- pip list
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:
- py.test --cov=./scrapy_tdd --cov-report xml:./coverage.xml
#- sonar-scanner
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT -t coverage.py
notifications:
email: false
addons:
sonarcloud:
organization: "rrschmidt-github"
token:
secure: "1L9UiE741PPxryHxRbMRHJQyc4kss+yJ2IC/HtCHMSG7C+wuR53JfGM8ulcrcnAlG2Sgpnxdh3MsvttPnBfoHo9yGdPDc89nlhehCl/0iOqgaXXCCGkK0fXf6Lp0Rujg6p9vG19uWo7HQRTagqETA+LFbZHHv2YHhKzpcSPYtjBZOqiAoAo6B+gBOcBujnkxQxWhMNxu5gGIvFaufQVqvuzXCI/BBVxx5zKehn5Ayn30GOHgFWMb/IGyJQ0f4yoaPN1xmNll9gJ9B+2xo+kg56cdrfh3I7jA1V+plymQOqsLO22tiwXqhiqYuDFpjSX1NKZviRM3kIM8Ba/15Wm64mLj4OthwZ8DYaFx1n2QpN1z/Q7pyC/6YfXC88CWwHWIPulOtDdQmvSLK4P/nihKHQ3mvLjH8jEOmszBg21WnkTtVqqEcBYiwKKJVx5yBeG+o0nip/afwSTI2l3tRwnazMPyZsYptHAqyH6I/vbjuDuDEqYsXGe7KDCOPeyw05FZ3vLo2LP8hdbrogymWscmAEGt/fSUXVSTioD60W42zo4/wIWqXlJJ0+5fI8HOtsoo86WI2RT/g6FPby0tOOD31kE8yiBKrh/dVx5ydtSP6Bq7rX8FB5pKqk5DnIuqEhBzW02jkemr9Ft+mShLDthWbzXR/olDy2y0qOOE4bDc6A4="