12 lines
263 B
Bash
Executable File
12 lines
263 B
Bash
Executable File
#!/bin/bash
|
|
# Run all of the integration test files using `uv run`.
|
|
set -eu
|
|
|
|
for file in integration_tests/test_*.py ; do
|
|
echo "-----------------"
|
|
echo "Running $file..."
|
|
uv run $file
|
|
echo "Running $file...done."
|
|
echo "-----------------"
|
|
done
|