Write migration and test

This commit is contained in:
Sung 2025-10-25 11:59:46 -07:00
commit 4fe23fe996
21 changed files with 1435 additions and 1185 deletions

View file

@ -1,6 +1,5 @@
#!/usr/bin/env bash
# test.sh runs test files sequentially
# https://stackoverflow.com/questions/23715302/go-how-to-run-tests-for-multiple-packages
# test.sh runs tests for CLI packages
set -eux
dir=$(dirname "${BASH_SOURCE[0]}")
@ -8,7 +7,5 @@ pushd "$dir/../../pkg/cli"
# clear tmp dir in case not properly torn down
rm -rf "./tmp"
go test -a ./... \
-p 1\
--tags "fts5"
go test ./... --tags "fts5"
popd