forked from tableau/TabPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.scrutinizer.yml
More file actions
executable file
·41 lines (41 loc) · 911 Bytes
/
.scrutinizer.yml
File metadata and controls
executable file
·41 lines (41 loc) · 911 Bytes
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
build:
environment:
python: 3.7.6
nodes:
coverage:
project_setup:
override:
- pip install -r requirements.txt
- pip install -r requirements_dev.txt
tests:
override:
- command: 'pytest tests --cov=tabpy --cov-config=setup.cfg'
idle_timeout: 600
coverage:
file: '.coverage'
config_file: 'setup.cfg'
format: 'py-cc'
analysis:
project_setup:
override:
- pip install -r requirements.txt
tests:
override: [py-scrutinizer-run]
dependencies:
override:
- pip install .
tests:
before:
- pip install -r requirements.txt
override:
pytest:
idle_timeout: 600
checks:
python:
code_rating: true
duplicate_code: true
filter:
excluded_paths:
- '*/tests/*'
dependency_paths:
- 'lib/*'