-
I would like to start using paratest, but most of our functional tests are not ready, yet. There is too much static setup setting up test fixtures in the database and between test classes the database gets truncated. My plan:
My questions:
If this is not possible, I'd have to run those two steps manually myself and somehow merge all reports and CI-output together. But since paratest is already merging results and reports, I could imagine this to be provided as a feature? My use case of gradually parallelizing a base of tests must surely not be unique. Or is there maybe another way? Maybe to append to existing reports in successive paratest-runs? Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
A lot of code would need to be written to accomplish your goal. Why not simply create n databases, one for each process, as described in https://github.com/paratestphp/paratest?tab=readme-ov-file#test-token? |
Beta Was this translation helpful? Give feedback.
A lot of code would need to be written to accomplish your goal.
Why not simply create n databases, one for each process, as described in https://github.com/paratestphp/paratest?tab=readme-ov-file#test-token?
I've never encountered a project where this is not much cheaper than any other solution.