We are already using pg arrays so the unpickle function in sql/tags.sql
is not needed, at least by the moment. I'm removing it because it was
entering in an infinite loop when creating the test database.
You can mark a test as slow using:
@pytest.mark.slow
def test_something():
...
Use the option "--runslow" to tell the test runner to also include slow
tests:
py.test --runslow ...