Skip to content

Commit aaf5439

Browse files
adjustments
1 parent c556081 commit aaf5439

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,7 @@ Alternatively, any Python package manager that supports installing from `pyproje
8080
```bash
8181
uv python install
8282
uv sync --locked
83-
# or
84-
just bootstrap
83+
# just bootstrap
8584
```
8685

8786
This will install the correct Python version, create and configure a virtual environment, and install all dependencies.
@@ -94,24 +93,21 @@ To run the test suite against the default versions of Python (lower bound of sup
9493

9594
```bash
9695
uv run nox --session test
97-
# or
98-
just test
96+
# just test
9997
```
10098

10199
To run the test suite against the entire matrix of supported versions of Python and Django:
102100

103101
```bash
104102
uv run nox --session tests
105-
# or
106-
just testall
103+
# just testall
107104
```
108105

109106
Both can be passed additional arguments that will be provided to `pytest`:
110107

111108
```bash
112109
uv run nox --session test -- -v --last-failed
113110
uv run nox --session tests -- --failed-first --maxfail=1
114-
# or
115-
just test -v --last-failed
116-
just testall --failed-first --maxfail=1
111+
# just test -v --last-failed
112+
# just testall --failed-first --maxfail=1
117113
```

0 commit comments

Comments
 (0)