We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1d5fadb + cf0c614 commit 63f8765Copy full SHA for 63f8765
DEVELOPMENT.md
@@ -21,4 +21,10 @@ To run tests for all Python versions:
21
tox
22
```
23
24
+## Fixing codestyle issues
25
+
26
+If the tests fail on the flake8 step, run:
27
28
+ make fix-codestyle
29
30
TODO: Deduplicate Python version list in [tests.yaml](.github/workflows/tests.yaml)
Makefile
@@ -0,0 +1,9 @@
1
+.venv:
2
+ uv venv --python 3.12
3
+ uv pip install black
4
5
+fix-codestyle: .venv
6
+ .venv/bin/black mollie
7
8
+clean:
9
+ rm -rf .venv
0 commit comments