* Fix bad sysctl command in README * Add --suite and --test flags to integration tests So we can run a single suite or a single test without having to edit any code. * Drop several skipped integration tests Many of these skips are no longer necessary. Didn't do an exhaustive check of all skipped tests, so this is just a start. * Simplify cleanup make target
12 lines
287 B
Makefile
12 lines
287 B
Makefile
.PHONY: integration-setup
|
|
integration-setup: integration-cleanup
|
|
DETACH=true .ci/run-elasticsearch.sh
|
|
|
|
.PHONY: integration-cleanup
|
|
integration-cleanup:
|
|
docker container rm --force --volumes instance || true
|
|
|
|
.PHONY: integration
|
|
integration: integration-setup
|
|
npm run test:integration
|