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
In #588 we added a test that places 10k rows in the nodes table, in order to effectively exercise an index.
We followed a common pytest pattern for slow tests: adding slow marker to the test, and adding -m 'not slow' to our pytest invocation.
To run this test---and perhaps future ones like it---on CI, we should:
Move the creation of that large database into a dedicated fixture that has a stable database name, rather than uuid4, and uses an existing database if it exists
On CI, mount an external volume in the container for postgres data.
Cache the volume between CI runs
The text was updated successfully, but these errors were encountered:
In #588 we added a test that places 10k rows in the
nodes
table, in order to effectively exercise an index.We followed a common pytest pattern for slow tests: adding
slow
marker to the test, and adding-m 'not slow'
to our pytest invocation.To run this test---and perhaps future ones like it---on CI, we should:
The text was updated successfully, but these errors were encountered: