Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -183,3 +183,19 @@ clean:
cover.out oci-archives bundle bundle.Dockerfile \
skupper-*.tgz artifacthub-repo.yml \
network-observer-*.tgz skupper-*-scope.yaml

# Run a specific test
test:
Comment thread
rafaelvzago marked this conversation as resolved.
Outdated
$(MAKE) -C tests/ test TEST="$(TEST)"

# Run all e2e tests
test-e2e:
$(MAKE) -C tests/ e2e-tests
Comment thread
rafaelvzago marked this conversation as resolved.
Outdated

# Run a subset of tests in parallel
test-subset:
$(MAKE) -C tests/ test-subset TESTS="$(TESTS)"

# Run CI tests
test-ci:
$(MAKE) -C tests/ ci-tests