File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change 2
2
# Run all of the integration test files using `uv run`.
3
3
set -eu
4
4
5
- HERE=$( dirname ${BASH_SOURCE:- $0 } )
6
- pushd " $HERE " > /dev/null
7
- trap ' popd' ERR
8
-
9
- for file in test_* .py ; do
5
+ for file in integration_tests/test_* .py ; do
10
6
echo " -----------------"
11
7
echo " Running $file ..."
12
8
uv run $file
13
9
echo " Running $file ...done."
14
10
echo " -----------------"
15
11
done
16
-
17
- popd
Original file line number Diff line number Diff line change 1
1
# See https://just.systems/man/en/ for instructions
2
2
set shell := [" bash" , " -c" ]
3
- # Do not modify the lock file when running justfile commands.
4
- export UV_FROZEN := " 1"
5
3
6
4
# Commonly used command segments.
7
5
typing_run := " uv run --group typing --extra aws --extra encryption --extra ocsp --extra snappy --extra test --extra zstd"
@@ -75,7 +73,7 @@ teardown-tests:
75
73
76
74
[group (' test' )]
77
75
integration-tests :
78
- UV_FROZEN= " 0" bash integration_tests/ run.sh
76
+ bash integration_tests/ run.sh
79
77
80
78
[group (' server' )]
81
79
run-server * args = " ":
You can’t perform that action at this time.
0 commit comments