File tree Expand file tree Collapse file tree 2 files changed +319
-18
lines changed Expand file tree Collapse file tree 2 files changed +319
-18
lines changed Original file line number Diff line number Diff line change 25
25
- name : Install dependencies
26
26
run : |
27
27
python -m pip install --upgrade pip
28
+
29
+ # Install Poetry for better dependency management
30
+ pip install poetry
31
+
32
+ # Install from requirements.txt
28
33
pip install -r requirements.txt
29
34
35
+ # Verify Snow CLI installation
36
+ snow --version
37
+ snow help | grep snowpark
38
+
30
39
- name : Set environment variables based on branch
31
40
run : |
32
41
# Determine environment based on branch
@@ -107,8 +116,20 @@ jobs:
107
116
- name : Install dependencies
108
117
run : |
109
118
python -m pip install --upgrade pip
119
+
120
+ # Install Poetry for better dependency management
121
+ pip install poetry
122
+
123
+ # Install from requirements.txt
110
124
pip install -r requirements.txt
111
- pip install snowflake-connector-python pandas
125
+
126
+ # Install Snow CLI and Snowpark extension explicitly
127
+ pip install snowflake-cli snowflake-cli-labs
128
+ snow extension install snowpark
129
+
130
+ # Verify Snow CLI installation
131
+ snow --version
132
+ snow help | grep snowpark
112
133
113
134
- name : Set environment variables based on branch
114
135
run : |
You can’t perform that action at this time.
0 commit comments