-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmatrix.toml
More file actions
86 lines (70 loc) · 2.03 KB
/
matrix.toml
File metadata and controls
86 lines (70 loc) · 2.03 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Matrix test configuration for testing pandas compatibility across Python versions
# Run with: pymatrix --config matrix.toml
#
# Split into scenarios per package due to pytest conftest collision when running
# multiple packages together (each has tests/conftest.py).
[[scenarios]]
name = "datasets-pandas2"
python = ["3.10", "3.11", "3.12", "3.13"]
working-dir = "tilebox-datasets"
test-command = "pytest"
test-args = ["-v"]
[scenarios.packages]
pandas = ["2.2.3"]
[[scenarios]]
name = "datasets-pandas3"
python = ["3.11", "3.12", "3.13"] # pandas 3.0 requires Python 3.11+
working-dir = "tilebox-datasets"
test-command = "pytest"
test-args = ["-v"]
[scenarios.packages]
pandas = ["3.0.0"]
[[scenarios]]
name = "storage-pandas2"
python = ["3.10", "3.11", "3.12", "3.13"]
working-dir = "tilebox-storage"
test-command = "pytest"
test-args = ["-v"]
[scenarios.packages]
pandas = ["2.2.3"]
[[scenarios]]
name = "storage-pandas3"
python = ["3.11", "3.12", "3.13"] # pandas 3.0 requires Python 3.11+
working-dir = "tilebox-storage"
test-command = "pytest"
test-args = ["-v"]
[scenarios.packages]
pandas = ["3.0.0"]
[[scenarios]]
name = "grpc-pandas2"
python = ["3.10", "3.11", "3.12", "3.13"]
working-dir = "tilebox-grpc"
test-command = "pytest"
test-args = ["-v"]
[scenarios.packages]
pandas = ["2.2.3"]
[[scenarios]]
name = "grpc-pandas3"
python = ["3.11", "3.12", "3.13"] # pandas 3.0 requires Python 3.11+
working-dir = "tilebox-grpc"
test-command = "pytest"
test-args = ["-v"]
[scenarios.packages]
pandas = ["3.0.0"]
[[scenarios]]
name = "workflows-pandas2"
python = ["3.10", "3.11", "3.12", "3.13"]
working-dir = "tilebox-workflows"
test-command = "pytest"
# Ignore FutureWarning: google-cloud-storage raises deprecation warning on Python 3.10
test-args = ["-v", "-W", "ignore::FutureWarning"]
[scenarios.packages]
pandas = ["2.2.3"]
[[scenarios]]
name = "workflows-pandas3"
python = ["3.11", "3.12", "3.13"] # pandas 3.0 requires Python 3.11+
working-dir = "tilebox-workflows"
test-command = "pytest"
test-args = ["-v"]
[scenarios.packages]
pandas = ["3.0.0"]