We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46142c9 commit 3021103Copy full SHA for 3021103
.github/workflows/python-lint.yml
@@ -13,5 +13,5 @@ jobs:
13
- uses: psf/black@stable
14
with:
15
options: "--check --verbose"
16
- src: "./openevolve ./tests ./examples"
+ src: "./openevolve ./tests ./examples ./scripts"
17
use_pyproject: true
Makefile
@@ -33,7 +33,7 @@ install: venv
33
# Run Black code formatting
34
.PHONY: lint
35
lint: venv
36
- $(PYTHON) -m black openevolve examples tests
+ $(PYTHON) -m black openevolve examples tests scripts
37
38
# Run tests using the virtual environment
39
.PHONY: test
0 commit comments