mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
13 lines
246 B
Bash
Executable File
13 lines
246 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
archive_file="$1"
|
|
workspace_remap="$2"
|
|
partition_spec="$3"
|
|
|
|
cargo nextest run \
|
|
--archive-file "$archive_file" \
|
|
--workspace-remap "$workspace_remap" \
|
|
--partition "$partition_spec" \
|
|
--no-fail-fast
|