kubevirt / kubevirt.github.io

KubeVirt website repo, documentation at https://kubevirt.io/user-guide/
https://kubevirt.io
MIT License
30 stars 112 forks source link

Speed up selector tests #730

Closed mazzystr closed 3 years ago

mazzystr commented 3 years ago

/kind enhancement

Current selector tests use a for loop to send lines of a csv to the container and then run a casperjs test.

We lose time spinning up the container, breaking it down just to spin it up for every iteration.

We might be able to speed this process up if we send the whole csv to the container then iterate. We start/stop the container once.