Is it possible to run truffle test without migrations?

My project consists of 15+ migrations, and some of them are really long to run (some of them include events parsing), and it takes me to ~5 minutes in order to run these migrations in the context of truffle test without the actual test being run.

I wonder if it's possible for truffle to save latest migration on a local test network, or should I add --network local with local ganache running?

Thanks!

I think your best bet is the local Ganache.

still reruns all migrations from the start :frowning_face:

Why is it not possible to save latest migration state to test network?
My migrations take over 5 minutes to run, and it's a big struggle to wait for them to finish and test.