Skip to content
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
3 changes: 3 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
python-version: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12]
os: [ubuntu-latest, windows-latest, macos-latest]
exclude: # https://github.com/actions/runner-images/issues/9770#issuecomment-2085623315
# ubuntu-latest dropped Python 3.7 since late 2024
- python-version: "3.7"
os: ubuntu-latest
# Apple Silicon ARM64 does not support Python < v3.8
- python-version: "3.7"
os: macos-latest
Expand Down
4 changes: 3 additions & 1 deletion msal_extensions/libsecret.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@
class LibSecretAgent(object):
"""A loader/saver built on top of low-level libsecret"""
# Inspired by https://developer.gnome.org/libsecret/unstable/py-examples.html
def __init__( # pylint: disable=too-many-arguments
def __init__(
# pylint: disable=too-many-arguments
# pylint: disable=too-many-positional-arguments
self,
schema_name,
attributes, # {"name": "value", ...}
Expand Down
7 changes: 7 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,10 @@ passenv =

commands =
pytest

[testenv:lint]
deps =
pylint
commands =
pylint msal_extensions

Loading