Makefile: rename integration-test to apptest (#10461)

Follow-up for 73015bccb9

Signed-off-by: Artem Fetishev <rtm@victoriametrics.com>
This commit is contained in:
Artem Fetishev
2026-02-12 19:01:16 +01:00
committed by GitHub
parent 88b2464fe8
commit 40b85eb211
2 changed files with 5 additions and 8 deletions

View File

@@ -93,8 +93,8 @@ jobs:
with:
files: ./coverage.txt
integration:
name: integration
apptest:
name: apptest
runs-on: ubuntu-latest
steps:
@@ -112,5 +112,5 @@ jobs:
go-version-file: 'go.mod'
- run: go version
- name: Run integration tests
run: make integration-test
- name: Run app tests
run: make apptest

View File

@@ -466,14 +466,11 @@ test-full:
test-full-386:
GOARCH=386 go test -tags 'synctest' -coverprofile=coverage.txt -covermode=atomic ./lib/... ./app/...
integration-test:
$(MAKE) apptest
apptest:
$(MAKE) victoria-metrics vmagent vmalert vmauth vmctl vmbackup vmrestore
go test ./apptest/... -skip="^Test(Cluster|Legacy).*"
integration-test-legacy: victoria-metrics vmbackup vmrestore
apptest-legacy: victoria-metrics vmbackup vmrestore
OS=$$(uname | tr '[:upper:]' '[:lower:]'); \
ARCH=$$(uname -m | tr '[:upper:]' '[:lower:]' | sed 's/x86_64/amd64/'); \
VERSION=v1.132.0; \