Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

Commit

Permalink
Remove multinode e2e tests from the e2e target
Browse files Browse the repository at this point in the history
Multinode is not supported and running the e2e tests with the flag
causes the following error when creating the extension:

CREATE EXTENSION IF NOT EXISTS promscale VERSION '0.5.4';

ERROR:  [dn0]: schema "ps_trace" does not exist
  • Loading branch information
alejandrodnm committed Jul 22, 2022
1 parent a92e15e commit f153d24
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ e2e: DOCKER_IMAGE?=$(shell ./scripts/fallback-docker.sh $(LOCAL_DOCKER_BASE):hea
e2e: pkg/tests/testdata/traces-dataset.sz generate
go test -v ./pkg/tests/end_to_end_tests/ -timescale-docker-image=$(DOCKER_IMAGE)
go test -v ./pkg/tests/end_to_end_tests/ -use-timescaledb=false -timescale-docker-image=$(DOCKER_IMAGE)
go test -v ./pkg/tests/end_to_end_tests/ -use-multinode -timescale-docker-image=$(DOCKER_IMAGE)
# TODO: Skipping multinode because tests are broken for now
# go test -v ./pkg/tests/end_to_end_tests/ -use-multinode -timescale-docker-image=$(DOCKER_IMAGE)

.PHONY: upgrade-test
upgrade-test: CURRENT_BRANCH?=$(shell git branch --show-current | sed 's#/#-#')
Expand Down

0 comments on commit f153d24

Please sign in to comment.