mirror of https://github.com/citusdata/citus.git
Fix problems with make check (#7433)
This fixes two problems: 1. Allow `make check -j20` to work, by disabling parallelism. This was reported by a user in #7432 2. Actually run all the tests by forwarding to `make check` instead of `check-full`, because confusingly `check-full` does not run all the tests.pull/7434/head
parent
188614512f
commit
14ecebe47c
3
Makefile
3
Makefile
|
@ -61,6 +61,7 @@ check-style:
|
|||
|
||||
# depend on install-all so that downgrade scripts are installed as well
|
||||
check: all install-all
|
||||
$(MAKE) -C src/test/regress check-full
|
||||
# explicetely does not use $(MAKE) to avoid parallelism
|
||||
make -C src/test/regress check
|
||||
|
||||
.PHONY: all check clean install install-downgrades install-all
|
||||
|
|
Loading…
Reference in New Issue