Skip to content

Commit 90c7a0c

Browse files
committed
update justfile
1 parent 57eb649 commit 90c7a0c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

justfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,43 +25,43 @@ docs: && resync
2525
{{docs_run}} sphinx-build -W -b html doc {{doc_build}}/html
2626

2727
[group('docs')]
28-
docs-serve:
28+
docs-serve: && resync
2929
{{docs_run}} sphinx-autobuild -W -b html doc --watch ./pymongo --watch ./bson --watch ./gridfs {{doc_build}}/serve
3030

3131
[group('docs')]
32-
docs-linkcheck:
32+
docs-linkcheck: && resync
3333
{{docs_run}} sphinx-build -E -b linkcheck doc {{doc_build}}/linkcheck
3434

3535
[group('typing')]
36-
typing:
36+
typing: && resync
3737
just typing-mypy
3838
just typing-pyright
3939

4040
[group('typing')]
41-
typing-mypy:
41+
typing-mypy: && resync
4242
{{typing_run}} mypy {{mypy_args}} bson gridfs tools pymongo
4343
{{typing_run}} mypy {{mypy_args}} --config-file mypy_test.ini test
4444
{{typing_run}} mypy {{mypy_args}} test/test_typing.py test/test_typing_strict.py
4545

4646
[group('typing')]
47-
typing-pyright:
47+
typing-pyright: && resync
4848
{{typing_run}} pyright test/test_typing.py test/test_typing_strict.py
4949
{{typing_run}} pyright -p strict_pyrightconfig.json test/test_typing_strict.py
5050

5151
[group('lint')]
52-
lint:
52+
lint: && resync
5353
{{uv_run}} pre-commit run --all-files
5454

5555
[group('lint')]
56-
lint-manual:
56+
lint-manual: && resync
5757
{{uv_run}} pre-commit run --all-files --hook-stage manual
5858

5959
[group('test')]
60-
test *args="-v --durations=5 --maxfail=10":
60+
test *args="-v --durations=5 --maxfail=10": && resync
6161
{{uv_run}} --extra test pytest {{args}}
6262

6363
[group('test')]
64-
run-tests *args:
64+
run-tests *args: && resync
6565
bash ./.evergreen/run-tests.sh {{args}}
6666

6767
[group('test')]

0 commit comments

Comments
 (0)