Skip to content

Commit 38a4fb6

Browse files
committed
cleanup
1 parent 8e108fb commit 38a4fb6

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

integration_tests/run.sh

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,10 @@
22
# Run all of the integration test files using `uv run`.
33
set -eu
44

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
106
echo "-----------------"
117
echo "Running $file..."
128
uv run $file
139
echo "Running $file...done."
1410
echo "-----------------"
1511
done
16-
17-
popd

justfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# See https://just.systems/man/en/ for instructions
22
set shell := ["bash", "-c"]
3-
# Do not modify the lock file when running justfile commands.
4-
export UV_FROZEN := "1"
53

64
# Commonly used command segments.
75
typing_run := "uv run --group typing --extra aws --extra encryption --extra ocsp --extra snappy --extra test --extra zstd"
@@ -75,7 +73,7 @@ teardown-tests:
7573

7674
[group('test')]
7775
integration-tests:
78-
UV_FROZEN="0" bash integration_tests/run.sh
76+
bash integration_tests/run.sh
7977

8078
[group('server')]
8179
run-server *args="":

0 commit comments

Comments
 (0)