forked from OpenSCAP/openscap-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.scrutinizer.yml
35 lines (33 loc) · 865 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
checks:
python:
code_rating: true
duplicate_code: true
build:
dependencies:
before:
- pip3 install -r requirements.txt
- npm i -g eslint
- pip3 install isort pylint flake8 coverage jsonschema
environment:
python: 3.9.6
nodes:
analysis:
project_setup:
override:
- 'true'
tests:
override:
- py-scrutinizer-run
- pylint-run
- command: tox
environment: { PYTHONPATH: }
coverage:
file: '.coverage'
format: 'py-cc'
tests: true
filter:
excluded_paths:
- '*/tests/*'
- 'docs/*'
dependency_paths:
- 'lib/*'