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
We use [pre-commit](https://github.com/pre-commit/pre-commit) library to manage local git hooks, as developers we just need to run in our virtual environment:
154
154
155
155
```
156
-
pre-commit install
156
+
pre-commit install -t pre-commit -t commit-msg
157
157
```
158
158
With this command the library will take configuration from `.pre-commit-config.yaml` and will set up the hooks by us.
159
159
160
-
Currently, we only have a hook to enforce semantic commit message.
161
160
162
161
### Test
163
162
We are using [Pytest](https://docs.pytest.org/en/latest/index.html) for tests. The tests are located in the package
0 commit comments