Skip to content

pip-websocket: bump msal from 1.25.0 to 1.31.1 in /client-samples/python/websockets #57

pip-websocket: bump msal from 1.25.0 to 1.31.1 in /client-samples/python/websockets

pip-websocket: bump msal from 1.25.0 to 1.31.1 in /client-samples/python/websockets #57

Workflow file for this run

name: Python Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
python-checkout-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
working-directory:
- ./client-samples/python/rest
- ./client-samples/python/websockets
defaults:
run:
working-directory: ${{ matrix.working-directory }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install dev dependencies
run: pip install -r dev-requirements.txt
- name: Run pytest
run: pytest tests/
- name: Run black check (linting)
run: black --check .