-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.scrutinizer.yml
50 lines (43 loc) · 935 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
38
39
40
41
42
43
44
45
46
47
48
49
50
---
# Scrutinizer CI settings for
# https://scrutinizer-ci.com/g/shalomb/inji/
checks:
python:
code_rating: true
duplicate_code: true
build:
environment:
python:
virtualenv: true
version: 3.11.1
redis: false
cache:
directories:
- ~/.analysis
- venv
dependencies:
override:
- echo 'Not installing requirements + package here'
nodes:
tests:
tests:
before:
- pip install --upgrade pip coverage
override:
- command: py-scrutinizer-run
idle_timeout: 720
- command: pylint-run
idle_timeout: 720
use_website_config: false
- command: make venv test-deps install-editable test-cov
idle_timeout: 720
coverage:
file: '.coverage'
config_file: '.coveragerc'
format: 'py-cc'
filter:
excluded_paths:
- '*/test/*'
- '*/tests/*'
dependency_paths:
- 'lib/*'