[FIX] makefile test_full_fast: generate a database test
- because test is in parallel, cannot have enought time to create _cache_erplibre_base , so create it in serial before
This commit is contained in:
parent
36490f83ea
commit
5ba826823f
1 changed files with 4 additions and 0 deletions
4
Makefile
4
Makefile
|
|
@ -589,6 +589,8 @@ test_full:
|
|||
.PHONY: test_full_fast
|
||||
test_full_fast:
|
||||
./script/make.sh clean
|
||||
# Need to create a BD to create cache _cache_erplibre_base
|
||||
./script/database/db_restore.py --database test
|
||||
./script/test/run_parallel_test.py
|
||||
# TODO This test is broken in parallel
|
||||
./script/make.sh test_code_generator_hello_world
|
||||
|
|
@ -596,6 +598,8 @@ test_full_fast:
|
|||
.PHONY: test_full_fast_coverage
|
||||
test_full_fast_coverage:
|
||||
./script/make.sh clean
|
||||
# Need to create a BD to create cache _cache_erplibre_base
|
||||
./script/database/db_restore.py --database test
|
||||
./.venv/bin/coverage erase
|
||||
./script/test/run_parallel_test.py --coverage
|
||||
# TODO This test is broken in parallel
|
||||
|
|
|
|||
Loading…
Reference in a new issue