File tree Expand file tree Collapse file tree
src/practitest_firecracker Expand file tree Collapse file tree Original file line number Diff line number Diff line change 201201 (contains? testname-test2 (str name " :" vals))))
202202 instances)
203203 instances)
204- log (when display-action-logs (do (log/infof " filter-instances: " ) (pprint/pprint filter-instances)))
205204
206205 ts-id-instance-num (into {} (map (fn [testset-id-name]
207206 {(first (first testset-id-name))
271270 test-by-id (group-by (fn [test] (read-string (:id (last test)))) all-tests)
272271 new-intstances (flatten (for [instances-part (partition-all 100 (shuffle make-instances))]
273272 (api/ll-create-instances client [project-id display-action-logs] instances-part)))
274- all-intstances (into [] (concat new-intstances filter-instances))
273+ all-intstances (into [] (concat new-intstances (if
274+ (not-empty pt-instance-params)
275+ filter-instances
276+ instances)))
275277
276278 instance-to-ts-test (group-by (fn [inst] [(:set-id (:attributes inst)) (:test-id (:attributes inst))]) all-intstances)]
277279 (when display-run-time (print-run-time " Time - after create instances: %d:%d:%d" start-time))
You can’t perform that action at this time.
0 commit comments