brain-score / core

MIT License
2 stars 5 forks source link

New schema for each testing run #78

Closed samwinebrake closed 5 months ago

samwinebrake commented 5 months ago

Database collisions previously occurred because all test runs shared the same testing schema ('public'). This meant that the testing database would sometimes be cleared while other testing runs were using it.

This PR addresses this by creating a new schema for each testing run (cooperating w/ PR #528). Between each test method, the schema is cleared, and at the end of the testing run, the schema is dropped.

Fixes issue #516 in brainscore vision.