Skip to content

Verbose mode

Verbose mode #9

Workflow file for this run

name: Automated test
on:
workflow_dispatch:
pull_request:
push:
jobs:
test:
runs-on: ubuntu-latest
name: Python 3.12
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Set up dependencies
run: pip install playwright pytest-playwright solara[pytest] nbformat click pytest scipy astropy jdaviz
- name: Initialize playwright
run: playwright install
- name: Convert notebook to profiling script
run: python convert.py imviz-profile.ipynb imviz-profile.py
working-directory: ./automated
- name: Run profiling script
run: pytest imviz-profile.py -vs
working-directory: ./automated