I have a rails app that references the TMY3 meteorological dataset, which is a ton of different hourly weather observations for over 1000 different sites.
I downloaded the entire dataset and sucked the columns I need into a local table that is indexed by site, which makes it nice and fast in dev and in production.
However, the indexing takes a good 5 minutes, which makes it a HUGE pain to load in every time for tests. This table never changes, so I'd like to just load it once into my testing environment and then leave it there to run the rest of my tests against. All my other models and tables are standard rails dealies that get factoried or mocked as needed.
Any ideas?