Skip to content

ENH: Update download_all_regression to use extended TSER 2024 archive #3186

ENH: Update download_all_regression to use extended TSER 2024 archive

ENH: Update download_all_regression to use extended TSER 2024 archive #3186

name: PR module imports
on:
push:
branches:
- main
pull_request:
paths:
- "aeon/**"
- ".github/workflows/**"
- "pyproject.toml"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test-core-imports:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Python 3.12
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install aeon and dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 30
max_attempts: 3
command: python -m pip install .
- name: Show dependencies
run: python -m pip list
- name: Run import test
run: python aeon/testing/tests/test_core_imports.py