-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpytest.ini
More file actions
31 lines (27 loc) · 838 Bytes
/
Copy pathpytest.ini
File metadata and controls
31 lines (27 loc) · 838 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
[pytest]
# FLUID Build CLI — pytest configuration
# Test discovery
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Test paths (all test directories)
testpaths = tests
# Output options
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
# Markers
markers =
unit: Unit tests for individual functions
integration: Integration tests across multiple components
slow: Tests that take significant time to run
smoke: Quick smoke tests for basic functionality
aws: Tests specific to AWS provider
gcp: Tests specific to GCP provider
snowflake: Tests specific to Snowflake provider
provider: Tests for provider implementations
datamesh: Tests for DataMesh Manager provider
policy: Tests for policy validators
runtime: Tests for runtime generators