You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+78-33
Original file line number
Diff line number
Diff line change
@@ -7,87 +7,132 @@ We are actively seeking additional maintainers. If you're interested, please con
7
7
8
8
## Installation
9
9
10
-
`django-enum` uses [Poetry](https://python-poetry.org/) for environment, package and dependency management:
10
+
### Install Just
11
11
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
14
25
```
15
26
16
27
## Documentation
17
28
18
29
`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:
19
30
20
-
```console
21
-
cd ./doc
22
-
poetry run make html
31
+
```shell
32
+
just install-docs
33
+
just docs
23
34
```
24
35
25
36
## Static Analysis
26
37
27
38
`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:
28
39
29
-
```console
30
-
./check.sh
40
+
```shell
41
+
just check
31
42
```
32
43
33
-
34
44
## Running Tests
35
45
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.
37
47
38
48
To run the full suite:
39
49
40
-
```console
41
-
poetry run pytest
50
+
```shell
51
+
just test
42
52
```
43
53
44
54
To run a single test, or group of tests in a class:
45
55
46
-
```console
47
-
poetry run pytest <path_to_tests_file>::ClassName::FunctionName
56
+
```shell
57
+
just test<path_to_tests_file>::ClassName::FunctionName
48
58
```
49
59
50
60
For instance to run all tests in TestDjangoEnums, and then just the
51
61
test_properties_and_symmetry test you would do:
52
62
53
63
```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
56
66
```
57
67
58
68
## RDBMS
59
69
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:
61
71
62
72
* postgres
63
73
* sqlite
64
74
* mysql
65
75
* mariadb
66
76
* oracle
67
77
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.
69
79
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.
71
81
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
85
88
```
86
89
87
90
## Issuing Releases
88
91
89
92
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:
90
93
91
-
```console
94
+
```shell
92
95
just release x.x.x
93
96
```
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
0 commit comments