Skip to content

Commit c9782af

Browse files
committed
use bash coloring for shell examples
1 parent e98d244 commit c9782af

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

CONTRIBUTING.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ We provide a platform independent justfile with recipes for all the development
1313

1414
`django-enum` uses [uv](https://docs.astral.sh/uv) for environment, package and dependency management:
1515

16-
```shell
16+
```bash
1717
just install_uv
1818
```
1919

2020
Next, initialize and install the development environment:
2121

22-
```shell
22+
```bash
2323
just setup
2424
just install
2525
```
@@ -28,7 +28,7 @@ Next, initialize and install the development environment:
2828

2929
`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:
3030

31-
```shell
31+
```bash
3232
just install-docs
3333
just docs
3434
```
@@ -37,7 +37,7 @@ Next, initialize and install the development environment:
3737

3838
`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:
3939

40-
```shell
40+
```bash
4141
just check
4242
```
4343

@@ -47,20 +47,20 @@ Next, initialize and install the development environment:
4747

4848
To run the full suite:
4949

50-
```shell
50+
```bash
5151
just test
5252
```
5353

5454
To run a single test, or group of tests in a class:
5555

56-
```shell
56+
```bash
5757
just test <path_to_tests_file>::ClassName::FunctionName
5858
```
5959

6060
For instance to run all tests in ExampleTests, and then just the
6161
test_color example test you would do:
6262

63-
```console
63+
```bash
6464
just test tests/test_examples.py::ExampleTests
6565
just test tests/test_examples.py::ExampleTests::test_color
6666
```
@@ -79,7 +79,7 @@ The settings for each RDBMS can be found in ``tests/settings.py``. The database
7979

8080
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.
8181

82-
```shell
82+
```bash
8383
just test-all # sqlite tests
8484
just test-all psycopg3 # for postgres using psycopg3
8585
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
9191

9292
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:
9393

94-
```shell
94+
```bash
9595
just release x.x.x
9696
```
9797

0 commit comments

Comments
 (0)