Ref T4327. The change parser unit tests need database fixtures, which are getting a bit slow to build. Speed them up by updating the quickstart.
Details
Details
- Reviewers
btrahan - Maniphest Tasks
- T4327: Problems trying to import project
- Commits
- Restricted Diffusion Commit
rPa9e11ed8c100: Update quickstart SQL
Initialized new storage via quickstart, clicked around, everything seemed to work properly. Ran all unit tests.
Diff Detail
Diff Detail
- Lint
Lint Skipped - Unit
Tests Skipped
Event Timeline
Comment Actions
The process is basically:
- Change storage namespace to something unique (bin/conf set storage.default-namespace ABCDEFGHIJ).
- Do a full upgrade (bin/storage upgrade -f).
- Do a dump (bin/storage dump > new_quickstart.sql).
- Find/replace ABCDEFGHIJ with {$NAMESPACE} in the dump file.
- The dump will also have some comments, table lock statements, etc., which vary a bit from version to version and which we don't need to retain. I removed these with find/replace until the new dump looked mostly similar to the old dump, this probably took about ~5 minutes of looking at diff and mangling stuff in my editor.