From 74d0cd9b2c43a730c76ea3f03d0db8510a3be831 Mon Sep 17 00:00:00 2001
From: Cédric Ollivier <cedric.ollivier@orange.com>
Date: Sat, 11 May 2019 10:21:01 +0200
Subject: Rename HelloWorld.txt to HelloWorld.robot
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

It takes the following warning into account [1] "Automatically parsing
other than '*.robot' files is deprecated"

[1] https://build.opnfv.org/ci/job/xtesting-opnfv-xtesting-latest-fifth-run/150/console

Change-Id: Ibe01eea7eb83c8724d6b4afe3a487ad813fed30d
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
---
 docker/testcases.yaml             | 2 +-
 xtesting/ci/testcases.yaml        | 2 +-
 xtesting/samples/HelloWorld.robot | 3 +++
 xtesting/samples/HelloWorld.txt   | 3 ---
 4 files changed, 5 insertions(+), 5 deletions(-)
 create mode 100644 xtesting/samples/HelloWorld.robot
 delete mode 100644 xtesting/samples/HelloWorld.txt

diff --git a/docker/testcases.yaml b/docker/testcases.yaml
index 0738e0df..0fc50487 100644
--- a/docker/testcases.yaml
+++ b/docker/testcases.yaml
@@ -60,7 +60,7 @@ tiers:
                     name: 'robotframework'
                     args:
                         suites:
-                            - /usr/lib/python3.6/site-packages/xtesting/samples/HelloWorld.txt
+                            - /usr/lib/python3.6/site-packages/xtesting/samples/HelloWorld.robot
                         variable:
                             - 'var01:foo'
                             - 'var02:bar'
diff --git a/xtesting/ci/testcases.yaml b/xtesting/ci/testcases.yaml
index b32a45f6..d3df1efb 100644
--- a/xtesting/ci/testcases.yaml
+++ b/xtesting/ci/testcases.yaml
@@ -61,7 +61,7 @@ tiers:
                     name: 'robotframework'
                     args:
                         suites:
-                            - /usr/lib/python3.6/site-packages/xtesting/samples/HelloWorld.txt
+                            - /usr/lib/python3.6/site-packages/xtesting/samples/HelloWorld.robot
                         variable:
                             - 'var01:foo'
                             - 'var02:bar'
diff --git a/xtesting/samples/HelloWorld.robot b/xtesting/samples/HelloWorld.robot
new file mode 100644
index 00000000..721c452b
--- /dev/null
+++ b/xtesting/samples/HelloWorld.robot
@@ -0,0 +1,3 @@
+*** Test Cases ***
+HelloWorld
+   Log    ${var01} ${var02}
diff --git a/xtesting/samples/HelloWorld.txt b/xtesting/samples/HelloWorld.txt
deleted file mode 100644
index 721c452b..00000000
--- a/xtesting/samples/HelloWorld.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-*** Test Cases ***
-HelloWorld
-   Log    ${var01} ${var02}
-- 
cgit