vmware-archive / sql-to-dbsp-compiler

Compiler translating SQL view definitions into DBSP circuits (https://github.com/vmware/database-stream-processor)
Other
28 stars 4 forks source link

Speed-up unit test execution using batching #94

Closed mihaibudiu closed 1 year ago

mihaibudiu commented 1 year ago

This applies to unit tests that run queries. Today each unit test is compiled in a separate Rust file, which is compiled and executed independently. We should batch multiple tests in a single file to speed-up testing.

ryzhyk commented 1 year ago

The easiest way to do this might be generating a workspace with multiple crates and just running cargo build --workspace