An open API service indexing awesome lists of open source software.

https://github.com/fpgmaas/msal-example


https://github.com/fpgmaas/msal-example

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# msal-example

This repo serves as a reproducible example for [this issue](https://github.com/AzureAD/microsoft-authentication-extensions-for-python/issues/140#issuecomment-2725509472) in `msal-extensions`.

To reproduce, clone the repository and install the environment with

```sh
uv sync
```

By default `msal-extensions` is added to the project, and the unit tests fail;

```sh
uv run python -m pytest
```

Removing `msal-extensions` will make the unit tests succeed:

```sh
uv remove msal-extensions
uv sync
uv run python -m pytest
```