| import os | |
| REPORT_NAME = os.environ.get("REPORT_NAME", "artifacts/tempest.log") | |
| TEMPEST_REPORT_XML = os.environ.get( | |
| "TEMPEST_REPORT_XML", "artifacts/tempest_report.xml" | |
| ) | |
| # Results machine readable file | |
| RESOURCES_FILE_NAME = os.environ.get( | |
| "RESULT_FILE_NAME", "artifacts/tempest_resources.yaml" | |
| ) | |
| # Temporary file | |
| TEMPORARY_FILE_NAME = os.environ.get( | |
| "TEMPORARY_FILE_NAME", "artifacts/tempest_temporary" | |
| ) |