Skip to content

Commit c13956f

Browse files
committed
update contributing
1 parent 7a6169f commit c13956f

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@ We are actively seeking additional maintainers. If you're interested, please ope
1010

1111
We provide a platform independent justfile with recipes for all the development tasks. You should [install just](https://just.systems/man/en/installation.html) if it is not on your system already.
1212

13-
`django-typer` uses [Poetry](https://python-poetry.org/) for environment, package, and dependency management. ``just init`` will install the necessary build tooling if you do not already have it:
13+
`django-typer` uses [uv](https://docs.astral.sh/uv) for environment, package, and dependency management. ``just setup`` will install the necessary build tooling if you do not already have it:
1414

1515
```shell
16-
just init
17-
just install
16+
just setup
1817
```
1918

2019
### Windows
@@ -70,14 +69,14 @@ just test-all
7069
To run a single test, or group of tests in a class:
7170

7271
```shell
73-
poetry run pytest <path_to_tests_file>::ClassName::FunctionName
72+
just test <path_to_tests_file>::ClassName::FunctionName
7473
```
7574

7675
For instance, to run all tests in BasicTests, and then just the test_call_command test you would do:
7776

7877
```shell
79-
poetry run pytest tests/test_basics.py::BasicTests
80-
poetry run pytest tests/test_basics.py::BasicTests::test_call_command
78+
just test tests/test_basics.py::BasicTests
79+
just test tests/test_basics.py::BasicTests::test_call_command
8180
```
8281

8382
## Versioning

0 commit comments

Comments
 (0)