Skip to content

Commit 1dd0747

Browse files
authored
PYTHON-5890 Remove automatic synchro for local testing (#2890)
1 parent ea074a3 commit 1dd0747

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

justfile

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ default:
1616
resync:
1717
@uv sync --quiet
1818

19-
[private]
20-
run-synchro:
21-
uv run --group unasync ./tools/synchro.py
22-
2319
# Set up the development environment
2420
install:
2521
bash .evergreen/scripts/setup-dev-env.sh
@@ -70,7 +66,7 @@ lint-manual *args="": && resync
7066

7167
# Run pytest (e.g. just test test/test_uri_parser.py)
7268
[group('test')]
73-
test *args="-v --durations=5 --maxfail=10": run-synchro && resync
69+
test *args="-v --durations=5 --maxfail=10": && resync
7470
#!/usr/bin/env bash
7571
set -euo pipefail
7672
uv run ${USE_ACTIVE_VENV:+--active} --extra test python -m pytest {{args}}
@@ -83,7 +79,7 @@ test-numpy *args="": && resync
8379

8480
# Run tests via the Evergreen test runner script
8581
[group('test')]
86-
run-tests *args: run-synchro && resync
82+
run-tests *args: && resync
8783
bash ./.evergreen/run-tests.sh {{args}}
8884

8985
# Set up the test environment (auth, TLS, etc.)

0 commit comments

Comments
 (0)