Skip to content

Commit

Permalink
chore: enforce experimental in e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-zaremba committed Sep 18, 2023
1 parent 861208d commit f43cb5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
- name: Test E2E
if: env.GIT_DIFF
run: |
EXPERIMENTAL=true make test-e2e
make test-e2e
liveness-test:
needs: install-tparse
Expand Down
7 changes: 1 addition & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,6 @@ go.sum: go.mod
###############################################################################

docker-build-e2e:
@DOCKER_BUILDKIT=1 docker build -t umee-network/umeed-e2e -f contrib/images/umee.e2e.dockerfile .

docker-build-e2e-experimental:
@DOCKER_BUILDKIT=1 docker build -t umee-network/umeed-e2e -f contrib/images/umee.e2e.dockerfile --build-arg EXPERIMENTAL=true .

docker-build:
Expand All @@ -196,14 +193,12 @@ TEST_COVERAGE_PROFILE=coverage.txt

UNIT_TEST_TAGS = norace
TEST_RACE_TAGS = ""
TEST_E2E_TAGS = "e2e"
TEST_E2E_TAGS = "e2e experimental"
TEST_E2E_DEPS = docker-build-e2e

ifeq ($(EXPERIMENTAL),true)
UNIT_TEST_TAGS += experimental
TEST_RACE_TAGS += experimental
TEST_E2E_TAGS += experimental
TEST_E2E_DEPS = docker-build-e2e-experimental
endif

test-unit: ARGS=-timeout=10m -tags='$(UNIT_TEST_TAGS)'
Expand Down

0 comments on commit f43cb5d

Please sign in to comment.