Skip to content

Commit d95698e

Browse files
Syed Raza AbbasSyed Raza Abbas
authored andcommitted
branch added to actions, none added as framework
1 parent 088dac4 commit d95698e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches: [ "main", "staging" ]
66

77
push:
8-
branches: [ "main", "staging", "main_V2" ]
8+
branches: [ "main", "staging", "main_V2", "main_V2_auth_fixes_and_enhancements" ]
99

1010
concurrency:
1111
group: ${{ github.head_ref || github.run_id }}

kinde_sdk/kinde_api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def __init__(
5454

5555
if framework is None:
5656
detector = FrameworkDetector()
57-
framework = detector.detect_framework(["flask", "fastapi", "django"])
57+
framework = detector.detect_framework(["flask", "fastapi", "django", "None"])
5858
if framework:
5959
print(f"Auto-detected framework: {framework}")
6060
else:

testv2/testv2_auth/test_oauth.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ def setUp(self):
1414
client_id="test_client_id",
1515
client_secret="test_client_secret",
1616
redirect_uri="http://localhost/callback",
17+
framework="None",
1718
host="https://example.com" # Use host parameter instead of individual URLs
1819
)
1920

0 commit comments

Comments
 (0)