forked from getsentry/sentry-auth-google
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from siemens/feat/adapt-sentry-24.8.0
refactor: adapt sentry tests to 24.8.0
- Loading branch information
Showing
7 changed files
with
123 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,4 @@ venv | |
.coverage | ||
.vscode/ | ||
# Fetched from upstream | ||
requirements-sentry.txt | ||
tests/conftest.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[submodule "deps/sentry"] | ||
path = deps/sentry | ||
url = https://github.com/getsentry/sentry.git | ||
# This is here for renovate | ||
branch = 24.8.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "sentry-auth-oidc" | ||
version = "8.1.0" | ||
version = "9.0.0" | ||
description = "OpenID Connect authentication provider for Sentry" | ||
authors = [ | ||
"Max Wittig <[email protected]>", | ||
|
@@ -19,6 +19,9 @@ packages = [ | |
{ include = "oidc" } | ||
] | ||
|
||
[tool.black] | ||
extend-exclude = "deps" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.11" | ||
|
||
|
@@ -30,7 +33,6 @@ flake8 = "^3.8.4" | |
[tool.poetry.group.test.dependencies] | ||
codecov = "^2.1.12" | ||
pytest = "^7.1.3" | ||
sentry = {git = "https://github.com/getsentry/sentry.git", rev = "24.2.0"} | ||
fixtures = "^4.1.0" | ||
|
||
[tool.isort] | ||
|
@@ -39,6 +41,9 @@ profile = "black" | |
[tool.poetry.plugins."sentry.apps"] | ||
"oidc" = "oidc.apps.Config" | ||
|
||
[tool.pytest.ini_options] | ||
testpaths = ["tests"] | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" |