Skip to content

Commit

Permalink
chore: Ignores only minor versions of pytest-asyncio (#471)
Browse files Browse the repository at this point in the history
Ignores only minor versions of pytest-asyncio
  • Loading branch information
Gmerold authored Nov 28, 2024
1 parent fafe16b commit 0432126
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@
"rangeStrategy": "bump",
"groupName": "Python dependencies"
},
{
// Bumping "pytest-asyncio" over 0.23 breaks the integration tests
"matchPackageNames": ["pytest-asyncio"],
"matchUpdateTypes": ["minor"],
"enabled": false
},
{
"matchBaseBranches": ["main", "v*"],
"matchManagers": ["github-actions"],
Expand All @@ -36,6 +42,4 @@
"groupName": "Terraform"
},
],
// Bumping "pytest-asyncio" over 0.23 breaks the integration tests
"ignoreDeps": ["pytest-asyncio"]
}

0 comments on commit 0432126

Please sign in to comment.