Commit fc145563 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

ECOC'22 functional test:

- arranged run_test scripts and objects
- deactivated unneeded components in the deployment
- arranged LoadDescriptors Python script
- improved Tutorial page for ECOC'22 demo
parent 6d3d2383
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
export TFS_REGISTRY_IMAGE="http://localhost:32000/tfs/"

# Set the list of components, separated by spaces, you want to build images for, and deploy.
export TFS_COMPONENTS="context device automation service slice compute webui"
export TFS_COMPONENTS="context device service slice compute" # automation webui

# Set the tag you want to use for your images.
export TFS_IMAGE_TAG="dev"
+4 −0
Original line number Diff line number Diff line
#!/bin/bash
source ecoc22/deploy_specs.sh
./deploy.sh
source tfs_runtime_env_vars.sh
+1 −0
Original line number Diff line number Diff line
@@ -13,4 +13,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.

source tfs_runtime_env_vars.sh
pytest --verbose src/tests/ecoc22/tests/test_functional_bootstrap.py
+1 −0
Original line number Diff line number Diff line
@@ -13,4 +13,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.

source tfs_runtime_env_vars.sh
pytest --verbose src/tests/ecoc22/tests/test_functional_create_service.py
+1 −0
Original line number Diff line number Diff line
@@ -13,4 +13,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.

source tfs_runtime_env_vars.sh
pytest --verbose src/tests/ecoc22/tests/test_functional_delete_service.py
Loading