Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Copy this file to `.env` and fill in real values before running VansahNodeFullTests.
# `.env` is already listed in .gitignore -- never commit real tokens.

# Base URL of your Vansah instance. Defaults to https://prod.vansah.com if unset.
VANSAH_URL=

# Vansah Connect token (Vansah Test Management > Connect). Required to run any test --
# all tests are skipped (not failed) if this is blank.
VANSAH_TOKEN=

# Jira project key that owns the test folder / issue below, e.g. "DEMO".
VANSAH_PROJECT_KEY=

# Path of an existing Vansah test folder, e.g. "regression/2025/smoke".
VANSAH_FOLDER_PATH=

# Key of an existing Jira issue to attach test runs to, e.g. "DEMO-1".
VANSAH_JIRA_ISSUE_KEY=

# Key of an existing test case, e.g. "DEMO-C1".
VANSAH_TEST_CASE_KEY=

# Key of an existing Advanced Test Plan, e.g. "DEMO-P1".
VANSAH_ATP_KEY=

# Asset type backing the Advanced Test Plan's requirement: "folder" or "issue". Defaults to "folder".
VANSAH_ATP_ASSET_TYPE=

# Key of an existing Standard Test Plan, e.g. "DEMO-P2".
VANSAH_STP_KEY=

# Optional test run properties.
VANSAH_SPRINT_NAME=
VANSAH_RELEASE_NAME=
VANSAH_ENVIRONMENT_NAME=

# Optional path to a real screenshot/image file to use for attachment tests.
# If unset, a tiny generated placeholder PNG is used instead.
VANSAH_SCREENSHOT_PATH=

# Optional: true/1 to print outgoing request payloads (mirrors VansahNode.setDebug()).
VANSAH_DEBUG=false
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# macOS system files
.DS_Store

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down Expand Up @@ -33,9 +36,13 @@ eggs/
*.rej
*.spec

# Environment variables
# Environment variables (keep .env.example tracked)
.env
*.env
!.env.example

# Documentation build artifacts (help-article docx, generated locally)
docs/

# Unit test / coverage reports
htmlcov/
Expand Down
68 changes: 0 additions & 68 deletions DemoUsage.py

This file was deleted.

Loading