Skip to content

Bump jupyterlab/maintainer-tools from 0.29.1 to 0.29.2 #568

Bump jupyterlab/maintainer-tools from 0.29.1 to 0.29.2

Bump jupyterlab/maintainer-tools from 0.29.1 to 0.29.2 #568

Workflow file for this run

name: Playwright Tests
on:
push:
branches: '*'
pull_request:
branches: '*'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-13]
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Set up Python
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Set up Node
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: '18.x'
- name: Install Python dependencies
run: |
python tools/install_pydeps.py
- name: Run Playwright Tests
run: |
pytest --capture=no --verbose -r A --showlocals --tb=native nbclassic/tests/end_to_end