Skip to content

Commit

Permalink
Merge pull request #221 from zopefoundation/fixup_pr_216
Browse files Browse the repository at this point in the history
Address issues from PR #216
  • Loading branch information
dataflake authored Oct 26, 2023
2 parents 13b9049 + 18d45cd commit 6f8d8c5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Preparation

The script needs a ``venv`` with some packages installed::

$ python3 -m venv .
$ python3.11 -m venv .
$ bin/pip install -r requirements.txt

To use the configuration provided here in a package call the following script::
Expand Down Expand Up @@ -272,7 +272,7 @@ updated. Example:
"extend-ignore = D203, W503",
]
additional-plugins = [
"maccabe"
"mccabe",
]
additional-sources = "testproj foo bar.py"
Expand Down Expand Up @@ -527,7 +527,7 @@ additional-config

additional-plugins
Some packages want to have additional flake8 plugins installed.
*Caution:* This option has to be a list of strings.
This option is a list of strings.

additional-sources
Sometimes not only ``src`` and ``setup.py`` contain Python code to be checked
Expand Down
3 changes: 3 additions & 0 deletions config/default/tests.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
{% endif %}
config:
# [Python version, tox env]
- ["3.9", "release-check"]
- ["3.9", "lint"]
- ["3.7", "py37"]
- ["3.8", "py38"]
Expand All @@ -61,13 +62,15 @@ jobs:
exclude:
{% endif %}
{% if with_windows %}
- { os: ["windows", "windows-latest"], config: ["3.9", "release-check"] }
- { os: ["windows", "windows-latest"], config: ["3.9", "lint"] }
{% if with_docs %}
- { os: ["windows", "windows-latest"], config: ["3.9", "docs"] }
{% endif %}
- { os: ["windows", "windows-latest"], config: ["3.9", "coverage"] }
{% endif %}
{% if with_macos %}
- { os: ["macos", "macos-11"], config: ["3.9", "release-check"] }
- { os: ["macos", "macos-11"], config: ["3.9", "lint"] }
{% if with_docs %}
- { os: ["macos", "macos-11"], config: ["3.9", "docs"] }
Expand Down

0 comments on commit 6f8d8c5

Please sign in to comment.