File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -141,8 +141,10 @@ function run_tests_for_version() {
141
141
# Check if the version supports templates with arguments (> 0.52.0)
142
142
if [ " $( version_compare " $VERSION " " 0.52.0" ) " == " >" ]; then
143
143
python3 run.py --feature-pipeline --training-pipeline --no-cache
144
+ python3 run.py --feature-pipeline --training-pipeline # run with cache
144
145
else
145
146
python3 run.py --no-cache
147
+ python3 run.py # run with cache
146
148
fi
147
149
# Add additional CLI tests here
148
150
zenml version
@@ -177,6 +179,7 @@ function run_tests_for_version() {
177
179
# Run the pipeline again to check if the restored database is working
178
180
echo " ===== Running starter template pipeline after DB restore (file dump) ====="
179
181
python3 run.py --feature-pipeline --training-pipeline --no-cache
182
+ python3 run.py --feature-pipeline --training-pipeline # run with cache
180
183
181
184
# For a mysql compatible database, perform a DB backup and restore using
182
185
# the backup database
@@ -204,6 +207,7 @@ function run_tests_for_version() {
204
207
# Run the pipeline again to check if the restored database is working
205
208
echo " ===== Running starter template pipeline after DB restore (backup database) ====="
206
209
python3 run.py --feature-pipeline --training-pipeline --no-cache
210
+ python3 run.py --feature-pipeline --training-pipeline # run with cache
207
211
fi
208
212
209
213
else
You can’t perform that action at this time.
0 commit comments