add scheduled daily test workflow with auto issue management. add --json flag to test-apps.py
This commit is contained in:
4
justfile
4
justfile
@@ -33,6 +33,10 @@ normalize:
|
||||
test *args:
|
||||
@python scripts/test-apps.py {{ args }}
|
||||
|
||||
# Dry-run the scheduled test workflow (no issues created)
|
||||
test-cron *args:
|
||||
@{{ if args == "-h" { "python scripts/test-apps.py -h" } else if args == "--help" { "python scripts/test-apps.py -h" } else { "python scripts/test-apps.py --json " + args + " > /tmp/test-results.json && python scripts/process-test-results.py /tmp/test-results.json --dry-run --run-url local" } }}
|
||||
|
||||
# Generate output files
|
||||
generate *args:
|
||||
@{{ if args == "help" { "just _generate-help" } else if args == "-h" { "just _generate-help" } else if args == "--help" { "just _generate-help" } else if args == "table" { "just _generate-table" } else if args == "readme" { "just _generate-readme" } else if args == "standard" { "just _generate-standard" } else if args == "dual-screen" { "just _generate-dual-screen" } else { "just _generate-all" } }}
|
||||
|
||||
Reference in New Issue
Block a user