Skip to content

Commit

Permalink
chore: Update tox version (#43)
Browse files Browse the repository at this point in the history
* chore: Update tox version

* chore: Update dependabot configuration
  • Loading branch information
titom73 authored Aug 28, 2023
1 parent 918c0fc commit b7a1607
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 17 deletions.
33 changes: 20 additions & 13 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,33 @@
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

# Basic set up for three package managers

version: 2
updates:
- package-ecosystem: "github-actions"
# Maintain dependencies for Python
# Dependabot supports updates to pyproject.toml files
# if they follow the PEP 621 standard.
- package-ecosystem: "pip"
directory: "/"
labels:
- dependabot
schedule:
interval: "weekly"
interval: "daily"
reviewers:
- "titom73"
labels:
- 'dependencies'
pull-request-branch-name:
separator: "/"
commit-message:
prefix: "bump"
include: "ci"
open-pull-requests-limit: 10
- package-ecosystem: "pip"
prefix: "bump: "
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
labels:
schedule:
interval: "weekly"
reviewers:
- "titom73"
labels:
- dependabot
- 'CI'
commit-message:
prefix: "bump"
include: "requirements"
open-pull-requests-limit: 10
prefix: "ci: "
2 changes: 1 addition & 1 deletion .github/workflows/pr-management.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,4 @@ jobs:

- name: "Run tox for ${{ matrix.python }}"
# run: tox -e testenv
run: tox -e gh-actions
run: tox
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ dev = [
"pytest-html>=3.1.1",
"pytest-metadata>=1.11.0",
"pylint-pydantic>=0.1.4",
"tox==4.0.11",
"tox==4.10.0",
"types-PyYAML",
"types-paramiko",
"types-requests",
Expand Down Expand Up @@ -132,13 +132,13 @@ envlist =
type,
report
[gh-actions]
[gh-actions-base]
python =
3.8: lint, type
3.9: lint, type
3.10: lint, type
[gh-actions-full]
[gh-actions]
python =
3.8: py38
3.9: py39
Expand Down

0 comments on commit b7a1607

Please sign in to comment.