Skip to content
Snippets Groups Projects
Commit 63dcda14 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Bug resolution in integration tester

parent b46b27fd
No related branches found
No related tags found
1 merge request!54Release 2.0.0
......@@ -55,6 +55,8 @@ integration_test integration_tester:
script:
- kubectl version
- kubectl get all
- kubectl --namespace=gitlab-ci delete pod integration-tester --wait=true --ignore-not-found=false
- kubectl get all
# --rm to remove tester when it finishes
- kubectl run $(echo $IMAGE_NAME | sed -r 's/[^a-zA-Z0-9\.\-]/-/g') --image "$CI_REGISTRY_IMAGE/$IMAGE_NAME:$IMAGE_TAG" --restart=Never -i --tty
- kubectl get all
......
import logging, os, pytest
from google.protobuf.json_format import MessageToDict
from src.common.tests.Assertions import validate_device_id, validate_link_id, validate_topology_has_devices, \
validate_topology_has_links, validate_topology_is_empty
from common.database.Factory import get_database, DatabaseEngineEnum
from common.database.api.Database import Database
from common.tests.Assertions import validate_device_id, validate_link_id, validate_topology_has_devices, \
validate_topology_has_links, validate_topology_is_empty
from context.client.ContextClient import ContextClient
from context.proto.context_pb2 import Device, Empty, Link
from device.client.DeviceClient import DeviceClient
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment