| # Copyright 2020 Telefónica Investigación y Desarrollo S.A.U. |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| ####################################################################################################### |
| # seedconfig.rc: COMMON BASE CONFIGURATION FOR THE ENVIRONMENT |
| ####################################################################################################### |
| # This configuration is customized for Vagrant sandboxes. If that is your case, please do not edit. |
| # This file can be used as template for creating a `seedconfig.rc` |
| # for other types of environments (e.g. Docker) |
| |
| # Base folder for all operations |
| export BASE_FOLDER=/home/vagrant |
| |
| # EOL account for SSH operations. Required for password-less operations with Git. |
| # Comment to undefine and it will use HTTP instead |
| export ETSIUSERNAME=$(git config user.name) |
| |
| # Folder where Robot tests are stored |
| export ROBOT_DEVOPS_FOLDER="${HOME}/devops/robot-systest" |
| |
| # Folder to save alternative DUT environments (optional) |
| export ENVIRONMENTS_FOLDER=environments |
| |
| # Folder where all required packages are stored |
| export PACKAGES_FOLDER="/vagrant/packages" |
| |
| # Folder where all required images are stored (intended for future use) |
| export IMAGES_FOLDER="/vagrant/images" |
| |
| # Folder where test results should be exported |
| export ROBOT_REPORT_FOLDER="/vagrant/results" |