-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.scrutinizer.yml
37 lines (37 loc) · 1010 Bytes
/
.scrutinizer.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
37
checks:
python:
code_rating: true
duplicate_code: true
build:
nodes:
analysis:
project_setup:
override:
- 'true'
tests:
override:
- py-scrutinizer-run
-
command: pylint-run
use_website_config: true
tests:
dependencies:
before:
- pip install tox
tests:
before:
- pip install coverage
override:
- tox -e clean,check,scrutinizer
-
command: coverage
coverage:
file: .coverage
config_file: '.coveragerc'
format: py-cc
filter:
excluded_paths:
- '*/test/*'
- '*/build/*'
dependency_paths:
- 'lib/*'