stellar / system-test

Home of the stellar/stellar-system-test docker image for e2e system testing
1 stars 5 forks source link

System Test: shouldn't need to recompile the example contracts once for each test #52

Open paulbellamy opened 1 year ago

paulbellamy commented 1 year ago

What problem does your feature solve?

Currently this re-compiles the example contracts for each test. This takes a lot of time.

What would you like to see?

We should compile a contract once and cache it for future tests.

What alternatives are there?

Compile all the contracts in advance, which might actually be even faster (since cargo would only need to build the deps once).