Skip to content

Commit e02c0cb

Browse files
committed
update contributing to reflect new tooling
1 parent c6e3d75 commit e02c0cb

File tree

1 file changed

+78
-33
lines changed

1 file changed

+78
-33
lines changed

CONTRIBUTING.md

+78-33
Original file line numberDiff line numberDiff line change
@@ -7,87 +7,132 @@ We are actively seeking additional maintainers. If you're interested, please con
77

88
## Installation
99

10-
`django-enum` uses [Poetry](https://python-poetry.org/) for environment, package and dependency management:
10+
### Install Just
1111

12-
```console
13-
poetry install -E all --with psycopg3
12+
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.
13+
14+
`django-enum` uses [uv](https://docs.astral.sh/uv) for environment, package and dependency management:
15+
16+
```shell
17+
just install_uv
18+
```
19+
20+
Next, initialize and install the development environment:
21+
22+
```shell
23+
just setup
24+
just install
1425
```
1526

1627
## Documentation
1728

1829
`django-enum` documentation is generated using [Sphinx](https://www.sphinx-doc.org). Any new feature PRs must provide updated documentation for the features added. To build the docs run:
1930

20-
```console
21-
cd ./doc
22-
poetry run make html
31+
```shell
32+
just install-docs
33+
just docs
2334
```
2435

2536
## Static Analysis
2637

2738
`django-enum` uses [ruff](https://docs.astral.sh/ruff) for python linting and formatting. [mypy](http://mypy-lang.org) is used for static type checking. Before any PR is accepted the following must be run, and static analysis tools should not produce any errors or warnings. Disabling certain errors or warnings where justified is acceptable:
2839

29-
```console
30-
./check.sh
40+
```shell
41+
just check
3142
```
3243

33-
3444
## Running Tests
3545

36-
`django-enum` uses [pytest](https://docs.pytest.org/) to define and run tests. All the tests are housed in tests/tests.py. Before a PR is accepted, all tests must be passing and the code coverage must be at 100%. A small number of exempted error handling branches are acceptable.
46+
`django-enum` uses [pytest](https://docs.pytest.org/) to define and run tests. All the tests are housed under ``tests/``. Before a PR is accepted, all tests must be passing and the code coverage must be at 100%. A small number of exempted error handling branches are acceptable.
3747

3848
To run the full suite:
3949

40-
```console
41-
poetry run pytest
50+
```shell
51+
just test
4252
```
4353

4454
To run a single test, or group of tests in a class:
4555

46-
```console
47-
poetry run pytest <path_to_tests_file>::ClassName::FunctionName
56+
```shell
57+
just test <path_to_tests_file>::ClassName::FunctionName
4858
```
4959

5060
For instance to run all tests in TestDjangoEnums, and then just the
5161
test_properties_and_symmetry test you would do:
5262

5363
```console
54-
poetry run pytest tests/tests.py::TestDjangoEnums
55-
poetry run pytest tests/tests.py::TestDjangoEnums::test_properties_and_symmetry
64+
just test tests/tests.py::TestDjangoEnums
65+
just test tests/tests.py::TestDjangoEnums::test_properties_and_symmetry
5666
```
5767

5868
## RDBMS
5969

60-
By default, the tests will run against postgresql so in order to run the tests you will need to have a postgresql server running that is accessible to the default postgres user with no password. The test suite can be run against any RDBMS supported by Django. Just set the RDBMS environment variable to one of:
70+
By default, the tests will run against postgresql so in order to run the tests you will need to have a postgresql server running that is accessible to the default postgres user with no password. The test suite can be run against any RDBMS supported by Django. Just set the ``RDBMS`` environment variable to one of:
6171

6272
* postgres
6373
* sqlite
6474
* mysql
6575
* mariadb
6676
* oracle
6777

68-
The settings for each RDBMS can be found in tests/settings.py. The database settings can be altered via environment variables that are referenced therein. The default settings are designed to work out of the box with the official docker images for each RDBMS. Reference the github actions workflow for an example of how to run the tests against each RDBMS using docker containers.
78+
The settings for each RDBMS can be found in ``tests/settings.py``. The database settings can be altered via environment variables that are referenced therein. The default settings are designed to work out of the box with the official docker images for each RDBMS. Reference the github actions workflow for an example of how to run the tests against each RDBMS using docker containers.
6979

70-
Additional dependency groups will need to be installed for some RDBMS:
80+
Additional dependency groups will need to be installed for some RDBMS, to run the full suite against a given RDBMS, set the ``RDBMS`` environment variable and run test-all with the appropriate db client argument.
7181

72-
```console
73-
74-
# for postgres using psycopg3
75-
poetry install -E all --with psycopg3
76-
77-
# for postgres using psycopg2
78-
poetry install -E all --with psycopg2
79-
80-
# for mysql or mariadb
81-
poetry install -E all --with mysql
82-
83-
# for oracle
84-
poetry install -E all --with oracle
82+
```shell
83+
just test-all # sqlite tests
84+
just test-all psycopg3 # for postgres using psycopg3
85+
just test-all psycopg2 # for postgres using psycopg2
86+
just test-all mysql # for mysql or mariadb
87+
just test-all oracle # for oracle
8588
```
8689

8790
## Issuing Releases
8891

8992
The release workflow is triggered by tag creation. You must have [git tag signing enabled](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits). Our justfile has a release shortcut:
9093

91-
```console
94+
```shell
9295
just release x.x.x
9396
```
97+
98+
## Just Recipes
99+
100+
```
101+
build # build docs and package
102+
build-docs # build the docs
103+
build-docs-html # build html documentation
104+
build-docs-pdf # build pdf documentation
105+
check # run all static checks
106+
check-docs # lint the documentation
107+
check-docs-links # check the documentation links for broken links
108+
check-format # check if the code needs formatting
109+
check-lint # lint the code
110+
check-package # run package checks
111+
check-readme # check that the readme renders
112+
check-types # run static type checking
113+
clean # remove all non repository artifacts
114+
clean-docs # remove doc build artifacts
115+
clean-env # remove the virtual environment
116+
clean-git-ignored # remove all git ignored files
117+
coverage # generate the test coverage report
118+
docs # build and open the documentation
119+
docs-live # serve the documentation, with auto-reload
120+
fix # fix formatting, linting issues and import sorting
121+
format # format the code and sort imports
122+
install *OPTS # update and install development dependencies
123+
install-docs # install documentation dependencies
124+
install-precommit # install git pre-commit hooks
125+
install_uv # install the uv package manager
126+
lint # sort the imports and fix linting issues
127+
manage *COMMAND # run the django admin
128+
open-docs # open the html documentation
129+
precommit # run the pre-commit checks
130+
release VERSION # issue a relase for the given semver string (e.g. 2.1.0)
131+
run +ARGS # run the command in the virtual environment
132+
setup python="python" # setup the venv and pre-commit hooks
133+
sort-imports # sort the python imports
134+
test *TESTS # run tests
135+
test-all DB_CLIENT="dev" # run all tests
136+
test-lock +PACKAGES # lock to specific python and versions of given dependencies
137+
validate_version VERSION # validate the given version string against the lib version
138+
```

0 commit comments

Comments
 (0)