Closed tjayrush closed 6 months ago
Plan of attack:
trueblocks-tests
repo../test
into the root of this repo (including all .gitignore files).git push
trueblocks-testsIn the trueblocks-core
repo
git submodule add https://github.com/TrueBlocks/trueblocks-tests tests
(note we moved to a new folder called tests
)git commit -am "Adds tests submodule"
./tests
instead of ./test
(should be quite easy)./tests
remove ./test
git push
(testing should run and work) Note that after this the history of the ./test
folder will still exist in the repo. We will be removing this later (a re-writing of history)
Modifications to cloning instructions:
git clone ...
git submodule update --init --recursive
Modify the pull instructions to include
git pull --recurse-submodules
To update when test files change:
cd ./tests (into the submodule)
git commit....
git push
Reasoning:
./test/gold
folderPlan of attack below.