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
23 changes: 8 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,10 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
python -m pip install pyyaml nbformat nbclient reportlab pillow ipykernel
python -m ipykernel install --user --name python3 --display-name "Python 3"
- name: Run unit tests
run: pytest -q

docs-smoke-notebooks:
data-integrity:
runs-on: ubuntu-latest

steps:
Expand All @@ -39,14 +37,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev,notebooks]
python -m pip install pyyaml nbformat nbclient reportlab pillow ipykernel
python -m ipykernel install --user --name python3 --display-name "Python 3"
- name: Run notebook/visual smoke tests
run: |
pytest -q tests/test_helpfile_ordinal_image_parity.py tests/test_validation_images_discovery.py
python -m pip install -e .[dev]
- name: Run dataset integrity tests
run: pytest -q tests/test_datasets.py

matlab-data-integrity:
notebook-smoke:
runs-on: ubuntu-latest

steps:
Expand All @@ -58,10 +53,10 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
python -m pip install pyyaml nbformat nbclient reportlab pillow ipykernel
python -m pip install ipykernel
python -m ipykernel install --user --name python3 --display-name "Python 3"
- name: Run dataset integrity tests
run: pytest -q tests/test_datasets.py
- name: Execute Python notebook smoke group
run: python tools/notebooks/run_notebooks.py --group ci_smoke --timeout 600

cleanroom-compliance:
runs-on: ubuntu-latest
Expand All @@ -75,7 +70,5 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
python -m pip install pyyaml nbformat nbclient reportlab pillow ipykernel
python -m ipykernel install --user --name python3 --display-name "Python 3"
- name: Run API surface checks
run: pytest -q tests/test_api_surface.py
132 changes: 0 additions & 132 deletions .github/workflows/full-parity-nightly.yml

This file was deleted.

90 changes: 0 additions & 90 deletions .github/workflows/image-mode-parity.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/parity-gate.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .github/workflows/performance-parity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,6 @@ jobs:
for row in payload["workloads"]:
writer.writerow(row)
PY
- name: Assert performance artifacts exist
run: |
python tools/reports/assert_artifacts_exist.py --kind performance
- name: Upload performance artifacts
if: always()
uses: actions/upload-artifact@v4
Expand Down
Loading