Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed ie execute to ie test in the exec docs testing action #243

Merged
merged 10 commits into from
Nov 26, 2024
2 changes: 1 addition & 1 deletion examples/test-exec-docs/test-exec-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ jobs:
# Iterate over changed Markdown files
for file_path in changed_files:
# Execute the Innovation Engine on the Markdown file
result = subprocess.run(['ie', 'execute', file_path, '--environment', 'github-action'])
result = subprocess.run(['ie', 'test', file_path, '--environment', 'github-action'])
if result.returncode != 0:
any_failures = True
# If execution fails, extract error log from 'ie.log'
Expand Down