-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtox.ini
More file actions
46 lines (45 loc) · 2.04 KB
/
Copy pathtox.ini
File metadata and controls
46 lines (45 loc) · 2.04 KB
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
[tox]
envlist = py310, py311, py312, py313, py314
isolated_build = True
[testenv]
description = Run tests and all examples on {basepython}
deps =
pytest>=6.0.0
pytest-cov>=2.10.0
commands =
pytest tests/ -v --tb=short
python examples/example_01_numerical_small.py
python examples/example_02_numerical_medium_lasso.py
python examples/example_03_numerical_mixed_features.py
python examples/example_04_classification_small.py
python examples/example_05_classification_large.py
python examples/example_06_clustering_known.py
python examples/example_07_clustering_unknown.py
python examples/example_08_numerical_very_large.py
python examples/example_09_text_classification.py
python examples/example_10_image_classification.py
python examples/example_11_image_clustering.py
python examples/example_12_text_configuration.py
python examples/example_13_text_unsupervised.py
python examples/example_14_ensemble_advanced_cv.py
python examples/example_15_anomaly_detection.py
python examples/example_16_ts_anomaly_detection.py
python examples/example_17_report_html.py
python examples/example_18_contrastive_text_example.py
python examples/example_19_rawgraphs.py
python examples/example_19_explainability.py
python examples/example_20_advanced_tuning.py
python examples/example_21_drift_detection.py
python examples/example_22_pipeline_persistence.py
python examples/example_23_feature_engineering.py
python examples/example_24_time_series_forecasting.py
python examples/example_25_fairness_metrics.py
python examples/example_26_data_quality.py
python examples/example_27_regressor_optimizer.py
python examples/example_28_classifier_optimizer.py
python examples/example_29_validation_advanced_cv.py
python examples/example_30_core_advanced_pipeline.py
python examples/example_31_cli_programmatic.py
python examples/example_32_highcharts_report.py
python examples/example_33_supervised_text.py
python examples/example_34_unsupervised_text.py