https://github.com/fpgmaas/msal-example
https://github.com/fpgmaas/msal-example
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/fpgmaas/msal-example
- Owner: fpgmaas
- Created: 2025-03-14T19:05:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-14T19:18:49.000Z (over 1 year ago)
- Last Synced: 2025-03-14T20:23:47.431Z (over 1 year ago)
- Language: Python
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```