forked from kedro-org/kedro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
55 lines (49 loc) · 1012 Bytes
/
setup.cfg
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
51
52
53
54
55
[metadata]
description-file=README.md
[tool:pytest]
addopts=--cov-report xml:coverage.xml
--cov-report term-missing
--cov kedro
--cov extras
--cov tests
--ignore tests/template/fake_repo
--no-cov-on-fail
-ra
[importlinter]
root_package = kedro
[importlinter:contract:1]
name = Contrib > CLI > Context > Library, Runner > IO & Pipeline
type = layers
containers = kedro
layers =
contrib
cli
context
runner
io
pipeline
config
[importlinter:contract:2]
name = Pipeline and IO are independent
type = independence
modules =
kedro.pipeline
kedro.io
[importlinter:contract:3]
name = Config can't import Runner et al
type = forbidden
source_modules =
kedro.config
forbidden_modules =
kedro.runner
kedro.io
kedro.pipeline
[importlinter:contract:4]
name = Runner et al can't import Config
type = forbidden
source_modules =
kedro.runner
kedro.io
kedro.pipeline
forbidden_modules =
kedro.config