Skip to content
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

ci, docs: mark fief oauth support as unmaintained, disable test #960

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def Page():
```
## How to configure OAuth

Solara supports the following OAuth providers: [Auth0](https://auth0.com/) and [Fief](https://fief.dev/).
Solara currently supports [Auth0](https://auth0.com/) as the sole OAuth provider. [Fief](https://fief.dev/) support is **deprecated** (currently untested), but is not planned to be removed. If you would like support for a different provider to be added, [contact us](/contact)


### Configuring Auth0
Expand Down Expand Up @@ -134,6 +134,8 @@ To create your own Auth0 application, follow these steps:

### Configuring Fief

##### Note: Fief support is not maintained or tested. If you would like Fief to be supported, feel free to [contact us](/contact)

You can also configure Solara to use our Fief test account. To do this, you need to set the following environment variables:

```bash
Expand Down Expand Up @@ -164,7 +166,7 @@ Solara provides two convenient components for creating a user interface for logi
1. [Avatar](/documentation/components/enterprise/avatar): This component shows the user's avatar.
2. [AvatarMenu](/documentation/components/enterprise/avatar_menu): This component shows a menu with the user's avatar and a logout button.

## Python version support
## Python version support

Please note that Python 3.6 is not supported for Solara OAuth.

Expand Down
2 changes: 1 addition & 1 deletion tests/integration/enterprise/oauth_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def test_oauth_from_app_auth0(page_session: playwright.sync_api.Page, solara_ser
page_session.locator("_vue=v-btn >> text=Login").wait_for()


@pytest.mark.skipif(not bool(os.environ.get("FIEF_PASSWORD")), reason="FIEF_PASSWORD not set")
@pytest.mark.skip(reason="Fief support is deprecated for now")
def test_oauth_from_app_fief(page_session: playwright.sync_api.Page, solara_server, solara_app):
with solara_app("solara.website.pages"):
settings.main.base_url = ""
Expand Down
Loading