|
| 1 | +# |
| 2 | +# auto-pts - The Bluetooth PTS Automation Framework |
| 3 | +# |
| 4 | +# Copyright (c) 2018, Intel Corporation. |
| 5 | +# |
| 6 | +# This program is free software; you can redistribute it and/or modify it |
| 7 | +# under the terms and conditions of the GNU General Public License, |
| 8 | +# version 2, as published by the Free Software Foundation. |
| 9 | +# |
| 10 | +# This program is distributed in the hope it will be useful, but WITHOUT |
| 11 | +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 12 | +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 13 | +# more details. |
| 14 | +# |
| 15 | + |
| 16 | +# Sample user_config file |
| 17 | +# Apply your changes and rename it to config.py |
| 18 | + |
| 19 | +from autopts.bot.iut_config.zephyr import iut_config |
| 20 | + |
| 21 | +BotProjects = [] |
| 22 | + |
| 23 | +z = zephyr_nrf52 = { |
| 24 | + 'name': 'zephyr' |
| 25 | +} |
| 26 | + |
| 27 | +# **************************************************************************** |
| 28 | +# AutoPTS configuration |
| 29 | +# **************************************************************************** |
| 30 | +z['auto_pts'] = { |
| 31 | + 'server_ip': ['192.168.3.2', '192.168.3.2'], |
| 32 | + 'local_ip': ['192.168.3.2', '192.168.3.2'], |
| 33 | + 'cli_port': [65001, 65003], |
| 34 | + 'srv_port': [65000, 65002], |
| 35 | + 'project_path': '/path/to/project', |
| 36 | + 'workspace': 'zephyr-master', |
| 37 | + 'database_file': 'path/to/zephyrTestCase.db', |
| 38 | + 'store': True, |
| 39 | + 'board': 'nrf52', |
| 40 | + 'tty_file': 'ttyUSB', # fake tty file |
| 41 | + 'debugger_snr': '123456789', |
| 42 | + 'enable_max_logs': False, |
| 43 | + 'retry': 2, |
| 44 | + 'bd_addr': '', |
| 45 | + # 'ykush': '3', # 1|2|3|a |
| 46 | + 'recovery': False, |
| 47 | + 'superguard': 15, # minutes |
| 48 | +} |
| 49 | + |
| 50 | +# **************************************************************************** |
| 51 | +# Git repositories configuration |
| 52 | +# **************************************************************************** |
| 53 | +z['git'] = { |
| 54 | + 'zephyr': { |
| 55 | + 'path': 'path/to/repo', |
| 56 | + 'remote': 'origin', |
| 57 | + 'branch': 'master', |
| 58 | + 'stash_changes': False, |
| 59 | + 'update_repo': False, |
| 60 | + }, |
| 61 | +} |
| 62 | + |
| 63 | +# **************************************************************************** |
| 64 | +# Mailbox configuration |
| 65 | +# |
| 66 | +# To send an email report with test result summary |
| 67 | +# **************************************************************************** |
| 68 | +z['mail'] = { |
| 69 | + "sender": "john.doe@example.com", |
| 70 | + "smtp_host": 'smtp.example.com', |
| 71 | + "smtp_port": 587, |
| 72 | + "name": "John", |
| 73 | + "passwd": "<PASSWD>", |
| 74 | + "start_tls": False, |
| 75 | + "recipients": [ |
| 76 | + "1234@example.com", |
| 77 | + "5678@example.com", |
| 78 | + ], |
| 79 | + # "subject": "Custom email subject", |
| 80 | +} |
| 81 | + |
| 82 | +# **************************************************************************** |
| 83 | +# Github configuration |
| 84 | +# |
| 85 | +# To commit and push logs to Github. |
| 86 | +# Configured ssh-agent must be started earlier. |
| 87 | +# **************************************************************************** |
| 88 | +z['githubdrive'] = { |
| 89 | + 'path': 'path/to/repo', |
| 90 | + 'remote': 'origin', |
| 91 | + 'branch': 'main', |
| 92 | + 'subdir': 'host/', |
| 93 | + 'commit_msg': '{branch}_{timestamp}_{commit_sha}', |
| 94 | +} |
| 95 | + |
| 96 | +# **************************************************************************** |
| 97 | +# Google Drive configuration |
| 98 | +# |
| 99 | +# To put the tests execution logs to Google Drive |
| 100 | +# **************************************************************************** |
| 101 | +z['gdrive'] = { |
| 102 | + "root_directory_id": "<GoogleDriveDirID>", |
| 103 | + "credentials_file": "/path/to/credentials.json", |
| 104 | +} |
| 105 | + |
| 106 | +# **************************************************************************** |
| 107 | +# IUT configuration |
| 108 | +# |
| 109 | +# To apply test case specific changes in IUT configuration |
| 110 | +# **************************************************************************** |
| 111 | + |
| 112 | +z['iut_config'] = iut_config |
| 113 | + |
| 114 | +# **************************************************************************** |
| 115 | +# Scheduler configuration |
| 116 | +# |
| 117 | +# To run the tests periodically |
| 118 | +# **************************************************************************** |
| 119 | +z['scheduler'] = { |
| 120 | + 'monday': '10:20', |
| 121 | + 'friday': '20:00', |
| 122 | +} |
| 123 | + |
| 124 | +BotProjects.append(zephyr_nrf52) |
0 commit comments