Skip to content

Upgrade to support jupyter_client 8 #357

Upgrade to support jupyter_client 8

Upgrade to support jupyter_client 8 #357

# This is a GitHub workflow defining a set of jobs with a set of steps.
# ref: https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions
#
name: Test labextensions
on:
pull_request:
branches: ["**"]
push:
branches: [main, master]
tags: ["**"]
defaults:
run:
shell: bash
jobs:
test_labextensions:
runs-on: ${{ matrix.os }}
timeout-minutes: 40
env:
# NOTE: UTF-8 content may be interpreted as ascii and causes errors
# without this.
LANG: C.UTF-8
MOZ_HEADLESS: 1
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-22.04]
python: ["3.10", "3.11"]
steps:
# This is how you set an environment variable in a GitHub workflow that
# will be available in following steps as if you would used `export
# MY_ENV=my-value`.
- name: Configure environment variables from job flags
run: |
echo "GROUP=labextensions" >> $GITHUB_ENV
- uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v1
with:
node-version: '17.x'
# NOTE: actions/setup-python@v2 can make use of a cache within the GitHub
# Action virtual environment and setup extremely fast. 3.9 isn't
# available in this cache as of November 2020.
- name: Install Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
python tasks.py install --group=labextensions
pip freeze
- name: Install Playwright
run: |
npx playwright install
- name: Run playwright tests
run: |
python tasks.py tests --group=labextensions
- name: Upload Playwright Test report
if: always()
uses: actions/upload-artifact@v2
with:
name: nbgrader-playwright-tests-os_${{ matrix.os }}-python_${{ matrix.python }}
path: |
playwright-tests