Skip to content

Commit

Permalink
fix: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dfederschmidt committed Oct 1, 2024
1 parent a4387cb commit 6887bbc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file not shown.
4 changes: 2 additions & 2 deletions .github/tests/run_on_changed_playbooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ def main():
parser = argparse.ArgumentParser(description="Get changed JSON or Python files in the root directory without extensions compared to a base branch")

# Add an argument for the base branch
parser.add_argument('base_branch', type=str, help='The base branch to compare against')
parser.add_argument('robot_path', type=str, help='Path of the robot test suite')
parser.add_argument('--base_branch', type=str, help='The base branch to compare against')
parser.add_argument('--robot-path', type=str, help='Path of the robot test suite')

# Parse the arguments
args = parser.parse_args()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Run Robot Framework tests
run: |
mkdir -p results
python .github/tests/run_on_changed_playbooks.py 6.3 .github/tests/robot/PlaybookScanner.robot
python .github/tests/run_on_changed_playbooks.py --base-branch=6.3 --robot-path=.github/tests/robot/PlaybookScanner.robot
- name: Archive test results
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 6887bbc

Please sign in to comment.