You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test: Share build results across tests to reduce build times
So far, our testcases build RBS signatures from scratch every time. It
is slow and unnecessary.
This introduces a mechanism to share the built signatures across tests.
Before:
```
Finished in 99.189478s, 0.2016 runs/s, 0.1815 assertions/s.
20 runs, 18 assertions, 0 failures, 0 errors, 0 skips
```
After:
```
Finished in 25.321047s, 0.7899 runs/s, 0.7109 assertions/s.
20 runs, 18 assertions, 0 failures, 0 errors, 0 skips
```
0 commit comments