-
Notifications
You must be signed in to change notification settings - Fork 10
feat(tests): add e2e test suite #1564
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
LioriE
wants to merge
32
commits into
main
Choose a base branch
from
feat/e2e-tests
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
99839cc
async v0
LioriE 9072ce7
Update uv.lock
LioriE 2d54ba2
lints
LioriE 621751b
thats ruff
LioriE 3d9f4e8
format
LioriE f7b418c
other
LioriE 14b59a8
ruff
LioriE 43b2cc0
remove plan files and revert vscode settings
LioriE fadfc14
refactor(tests): centralize JWTs and shared helpers in testutils
LioriE 95e7f8b
good
LioriE e050b20
refactor: remove decorative dash-banner section headers
LioriE b3c4428
Merge branch 'main' into feat/poc-async-base-and-totp
LioriE 4ab5438
feat: add async support for all 8 remaining auth methods
LioriE 6246b50
v1
LioriE dbc36c7
and another pass
LioriE 553fb70
Merge branch 'feat/poc-async-base-and-totp' of github.com:descope/pyt…
LioriE c4d0555
fix: ruff lint errors and complete validation/compose dedup refactor
LioriE f1b9f12
fix: address async auth review comments
LioriE 52c4430
fix(types): accept Optional[str] in SAML and WebAuthn base method sig…
LioriE 9756282
fix(tests): suppress unused mock_post variables and fix bool comparison
LioriE 88c48e5
lint-format
LioriE 503fc92
e2e
LioriE 0ebcc89
Merge remote-tracking branch 'origin/main' into feat/async-descope-cl…
LioriE 8a7336e
refactor(async): make AuthAsync fully non-blocking + lazy license han…
LioriE 2f54bf0
chore(quality): address CodeQL findings + un-skip async tests
LioriE 2b15e66
Merge remote-tracking branch 'origin/main' into feat/async-descope-cl…
LioriE be21eb2
chore(merge): port actor_id support to TenantAsync, parametrize new test
LioriE e7e4059
test: add coverage for AuthAsync flows + common signup/login options
LioriE 4b78f8d
Merge remote-tracking branch 'origin/feat/async-descope-client' into …
LioriE 2a01d4d
Merge remote-tracking branch 'origin/main' into feat/async-descope-cl…
LioriE d7a9e3a
refactor(async): delegate OAuth/SAML/SSO exchange_token to shared Aut…
LioriE f90b0cf
Merge branch 'feat/async-descope-client' into feat/e2e-tests
LioriE File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,16 @@ | ||
| title = "python-sdk gitleaks config" | ||
|
|
||
| [allowlist] | ||
| description = "False positives: test fixture JWTs, coverage artifacts, README examples" | ||
| regexes = [ | ||
| # Fake JWTs used as test fixtures (kid: 2Bt5WLccLUey1Dp7utptZb3Fx9K) | ||
| '''eyJhbGciOiJFUzM4NCIsImtpZCI6IjJCdDVXTGNjTFVleTFEcDd1dHB0WmIzRng5SyIsInR5cCI6IkpX''', | ||
| # Fake JWTs used as test fixtures (kid: P2CtzUhdqpIF2ys9gg7ms06UvtC4) | ||
| '''eyJhbGciOiJFUzM4NCIsImtpZCI6IlAyQ3R6VWhkcXBJRjJ5czlnZzdtczA2VXZ0QzQiLCJ0eXAiOiJK''', | ||
| # Example password in README docs | ||
| '''qYlvi65KaX''', | ||
| ] | ||
| paths = [ | ||
| # Coverage report artifacts | ||
| '''htmlcov/''', | ||
| ] |
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🟢 LOW: This
skip_debouncecheck is dead. The step's first condition requiresgithub.event_name == 'pull_request', but theskip_debounceinput only exists forworkflow_dispatchevents. On a PR runinputs.skip_debounceis always empty, so!= 'true'is always true; on a dispatch run the step is skipped entirely. The input (and the comment promising it skips the debounce) never has any effect.