File tree 1 file changed +14
-2
lines changed
1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ commands:
37
37
parameters :
38
38
pandas_version :
39
39
type : string
40
+ numpy_version :
41
+ type : string
40
42
steps :
41
43
- checkout
42
44
- browser-tools/install-chrome
@@ -65,19 +67,24 @@ commands:
65
67
command : |
66
68
source .venv/bin/activate
67
69
uv pip install pip
68
- python -m pip install pandas==<<parameters.pandas_version>>
70
+ python -m pip install pandas==<<parameters.pandas_version>> numpy==<<parameters.numpy_version>>
69
71
70
72
- run :
71
73
name : Test core
72
74
command : |
73
75
source .venv/bin/activate
74
76
python -m pytest tests/test_core
75
77
no_output_timeout : 20m
78
+ - run :
79
+ name : List installed packages and python version
80
+ command : |
81
+ source .venv/bin/activate
82
+ uv pip list
83
+ python --version
76
84
- run :
77
85
name : Test optional
78
86
command : |
79
87
source .venv/bin/activate
80
- uv pip list | grep pandas
81
88
python -m pytest tests/test_optional
82
89
no_output_timeout : 40m
83
90
- run :
@@ -141,12 +148,16 @@ jobs:
141
148
pandas_version :
142
149
default : " "
143
150
type : string
151
+ numpy_version :
152
+ default : " "
153
+ type : string
144
154
executor :
145
155
name : docker-container
146
156
python_version : <<parameters.python_version>>
147
157
steps :
148
158
- test_optional :
149
159
pandas_version : <<parameters.pandas_version>>
160
+ numpy_version : <<parameters.numpy_version>>
150
161
151
162
# Percy
152
163
python_39_percy :
@@ -423,5 +434,6 @@ workflows:
423
434
name : " Test optional with pandas 1.2.4"
424
435
python_version : " 3.9"
425
436
pandas_version : " 1.2.4"
437
+ numpy_version : " 1.26.4"
426
438
- python_39_percy
427
439
- build-doc
You can’t perform that action at this time.
0 commit comments