-
Notifications
You must be signed in to change notification settings - Fork 58
/
pytest.ini
52 lines (51 loc) · 2.1 KB
/
pytest.ini
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
[pytest]
markers =
folder: used to insert name of folder in lineapy
slow: marks tests as slow (deselect with '-m "not slow"')
integration: marks tests as integration tests (deselect with '-m "not integration"')
airflow: marks tests as running airflow (deselect with '-m "not airflow"')
ray: marks tests as running ray (deselect with '-m "not ray"')
dvc: marks tests as running dvc (deselect with '-m "not dvc"')
kubeflow: marks tests as running kubeflow (deselect with '-m "not kubeflow"')
argo: marks tests as running argo (deselect with '-m "not argo"')
norecursedirs =
__snapshots__
.ipynb_checkpoints
docs
sources
envs
filterwarnings =
ignore:A private pytest class or function was used.:pytest.PytestDeprecationWarning
addopts =
--cov-report html
--cov-report term:skip-covered
--no-cov-on-fail
--ignore-glob "*/__error_on_load.py"
--ignore-glob "tests/simple.py"
--ignore-glob "examples/self-hosting-lineapy/*"
--ignore-glob "examples/use_cases/*.py"
--ignore-glob "examples/use_cases/discover_and_trace_past_work/demo_setup.ipynb"
--ignore-glob "examples/tutorials/output/*"
--ignore-glob "examples/dev_internals/HOWTO_retrive_all_version_of_an_artifact.ipynb"
--ignore-glob "tests/housing.py"
--ignore-glob "tests/p_value_housing.py"
--ignore-glob "Untitled*.ipynb"
--ignore-glob "*/Untitled*.ipynb"
--ignore-glob "tests/y_housing.py"
--ignore-glob "tests/sliced_housing*.py"
--ignore-glob "tests/outputs/*"
--ignore-glob "tests/integration/slices/*"
--ignore-glob "tests/integration/sources/*"
--ignore-glob "tests/integration/envs/*"
--ignore-glob "tests/end_to_end/import_*"
--ignore-glob "examples/tutorials/output/*"
--ignore-glob "build/*"
--ignore-glob "lineapy/_alembic/env.py"
--ignore-glob "tests/unit/graph_reader/expected/*"
--ignore-glob "tests/unit/plugins/expected/*"
--ignore-glob "tests/pipeline_*.py"
--ignore-glob ".colab/*"
-m "not (airflow or ray or dvc or kubeflow or argo or integration)"
--nbval
--doctest-modules
xfail_strict=true