diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index 2c91c94..3314f3d 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -12,6 +12,7 @@ jobs: with: python3-minor-versions: '["8","11"]' manylinux-platforms: '["_2_28-x64","2014-x64"]' + test-notebooks: true secrets: pypi_password: ${{ secrets.pypi_password }} @@ -21,5 +22,6 @@ jobs: with: python3-minor-versions: '["8","9","10","11"]' manylinux-platforms: '["_2_28-x64","2014-x64"]' + test-notebooks: true secrets: pypi_password: ${{ secrets.pypi_password }} diff --git a/.github/workflows/notebook-test.yml b/.github/workflows/notebook-test.yml deleted file mode 100644 index a8c30d3..0000000 --- a/.github/workflows/notebook-test.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Test notebooks - -on: [push, pull_request] - -jobs: - nbmake: - runs-on: ${{ matrix.os }} - strategy: - max-parallel: 3 - matrix: - os: [ubuntu-22.04, macos-12] - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v3 - with: - python-version: '3.9' - - name: Install build dependencies - run: | - python -m pip install --upgrade pip - python -m pip install -r ./.binder/requirements.txt - python -m pip install pytest nbmake - - name: Test notebooks - shell: bash - run: | - pytest --nbmake --nbmake-timeout=3000 examples/*.ipynb