Skip to content

Commit 4f491dc

Browse files
authored
Create CONTRIBUTING.md
1 parent 2f662eb commit 4f491dc

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

CONTRIBUTING.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# CONTRIBUTING
2+
3+
### The PySHACL project encourages submissions from anyone who wishes to contribute
4+
5+
There are some strict submission quality requirements:
6+
7+
## Code Format
8+
9+
PySHACL uses the `black` code style. https://github.com/psf/black
10+
11+
Specifically, we use v20.8b1 in `py36` mode, with line length of `119`, and `skip-string-normalization = true`.
12+
13+
## Code Linting
14+
15+
PySHACL requires all code to pass the Flake8 linter. In the internal test suite, we use Flake8 v3.8.0.
16+
17+
In addition to Flake8, we use `isort` to keep the import strings at the top of each source file in a consistent sorted order. The version if isort used is v5.7.0 and it is configured with the isort settings listed in the pyproject.toml file.
18+
19+
## Type Checking
20+
21+
PySHACL uses MyPy to run static type analysis checks on the code. Not all parts of PySHACL have type annotations, but those parts that do should be annotated correctly to pass the MyPy test.
22+
23+
The internal test suite uses MyPy v0.800.
24+
25+
## Testing
26+
27+
The best way to comprehensively test PySHACL is to use [Tox](https://tox.readthedocs.io/en/latest/).
28+
29+
It is a simple matter of running `pip3 install tox` then `tox` on the commandline in the project root.
30+
31+
This will run a whole suite of tests, including pytest, flake8, mypy, black and isort.
32+
33+
All tests in the PySHACL pytest test suite should pass without errors.
34+
35+
## Makefile
36+
37+
There is also a Makefile in the project root that you can for covenience to kick off tests with `make test`, as well as some non-tox commands that can be invoked with `make format`, `make list` and `make type-check`.
38+
39+

0 commit comments

Comments
 (0)