mirror of
https://github.com/ansible-collections/kubernetes.core.git
synced 2026-03-26 21:33:02 +00:00
[backport/2.2] Move integration test suite from molecule to ansible-test (#392)
Move integration test suite from molecule to ansible-test
SUMMARY
molecule has been replaced with ansible-test
some test cases have been updated
k8s_apply : remove duplicated tasks increasing the running time of the test
helm: use different namespaces for different test cases in order to wait for the namespace deletion before moving to the next test.
all: remove wait: yes at the end of each test when deleting namespace, the role used to create namespace will ensure that it is deleted before if existing.
ISSUE TYPE
Feature Pull Request
COMPONENT NAME
integration testing
Reviewed-by: Mike Graves mgraves@redhat.com
Reviewed-by: Gonéri Le Bouder goneri@lebouder.net
Reviewed-by: None
(cherry picked from commit fd61f8b)
SUMMARY
ISSUE TYPE
Bugfix Pull Request
Docs Pull Request
Feature Pull Request
New Module Pull Request
COMPONENT NAME
ADDITIONAL INFORMATION
29 lines
892 B
Makefile
29 lines
892 B
Makefile
# Also needs to be updated in galaxy.yml
|
|
VERSION = 2.2.3
|
|
|
|
TEST_ARGS ?= ""
|
|
PYTHON_VERSION ?= `python -c 'import platform; print(".".join(platform.python_version_tuple()[0:2]))'`
|
|
|
|
clean:
|
|
rm -f kubernetes-core-${VERSION}.tar.gz
|
|
rm -rf ansible_collections
|
|
rm -rf tests/output
|
|
|
|
build: clean
|
|
ansible-galaxy collection build
|
|
|
|
release: build
|
|
ansible-galaxy collection publish kubernetes-core-${VERSION}.tar.gz
|
|
|
|
install: build
|
|
ansible-galaxy collection install -p ansible_collections kubernetes-core-${VERSION}.tar.gz
|
|
|
|
test-sanity:
|
|
ansible-test sanity --docker -v --color --python $(PYTHON_VERSION) $(?TEST_ARGS)
|
|
|
|
test-integration:
|
|
ansible-test integration --diff --no-temp-workdir --color --skip-tags False --retry-on-error --continue-on-error --python $(PYTHON_VERSION) -v --coverage $(?TEST_ARGS)
|
|
|
|
test-unit:
|
|
ansible-test units --docker -v --color --python $(PYTHON_VERSION) $(?TEST_ARGS)
|