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
+9-9
Original file line number
Diff line number
Diff line change
@@ -13,13 +13,13 @@ We provide a platform independent justfile with recipes for all the development
13
13
14
14
`django-enum` uses [uv](https://docs.astral.sh/uv) for environment, package and dependency management:
15
15
16
-
```shell
16
+
```bash
17
17
just install_uv
18
18
```
19
19
20
20
Next, initialize and install the development environment:
21
21
22
-
```shell
22
+
```bash
23
23
just setup
24
24
just install
25
25
```
@@ -28,7 +28,7 @@ Next, initialize and install the development environment:
28
28
29
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:
30
30
31
-
```shell
31
+
```bash
32
32
just install-docs
33
33
just docs
34
34
```
@@ -37,7 +37,7 @@ Next, initialize and install the development environment:
37
37
38
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:
39
39
40
-
```shell
40
+
```bash
41
41
just check
42
42
```
43
43
@@ -47,20 +47,20 @@ Next, initialize and install the development environment:
47
47
48
48
To run the full suite:
49
49
50
-
```shell
50
+
```bash
51
51
just test
52
52
```
53
53
54
54
To run a single test, or group of tests in a class:
55
55
56
-
```shell
56
+
```bash
57
57
just test<path_to_tests_file>::ClassName::FunctionName
58
58
```
59
59
60
60
For instance to run all tests in ExampleTests, and then just the
61
61
test_color example test you would do:
62
62
63
-
```console
63
+
```bash
64
64
just test tests/test_examples.py::ExampleTests
65
65
just test tests/test_examples.py::ExampleTests::test_color
66
66
```
@@ -79,7 +79,7 @@ The settings for each RDBMS can be found in ``tests/settings.py``. The database
79
79
80
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.
81
81
82
-
```shell
82
+
```bash
83
83
just test-all # sqlite tests
84
84
just test-all psycopg3 # for postgres using psycopg3
85
85
just test-all psycopg2 # for postgres using psycopg2
@@ -91,7 +91,7 @@ Additional dependency groups will need to be installed for some RDBMS, to run th
91
91
92
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:
0 commit comments