From 1a754d8fcc71269b6fc5a451f7ef20b3456bb4a2 Mon Sep 17 00:00:00 2001 From: Anton Schwaighofer Date: Fri, 28 Jul 2023 10:27:39 +0100 Subject: [PATCH] MNT: Disable PyRight (#906) Remove pyright from PR builds. At present, this constantly fails because the disk is full. This blocks the release of new packages --- .github/workflows/hi-ml-pr.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/hi-ml-pr.yml b/.github/workflows/hi-ml-pr.yml index 223c55c2..6c5b3e4e 100644 --- a/.github/workflows/hi-ml-pr.yml +++ b/.github/workflows/hi-ml-pr.yml @@ -77,21 +77,21 @@ jobs: make pip_test make mypy - himl-pyright: - runs-on: ubuntu-20.04 - steps: - - uses: actions/checkout@v3 - with: - lfs: true - - uses: actions/setup-node@v3 - with: - node-version: '14' - - uses: conda-incubator/setup-miniconda@v2 - - name: pyright - shell: bash -l {0} - run: | - conda info - make pyright + # himl-pyright: + # runs-on: ubuntu-20.04 + # steps: + # - uses: actions/checkout@v3 + # with: + # lfs: true + # - uses: actions/setup-node@v3 + # with: + # node-version: '14' + # - uses: conda-incubator/setup-miniconda@v2 + # - name: pyright + # shell: bash -l {0} + # run: | + # conda info + # make pyright himl-pytest-fast: runs-on: ubuntu-20.04 @@ -313,7 +313,7 @@ jobs: himl-publish-testpypi-pkg: runs-on: ubuntu-20.04 - needs: [ himl-test-artifact-pkg, himl-pyright, himl-mypy, himl-flake8, himl-smoke-tests-completed ] + needs: [ himl-test-artifact-pkg, himl-mypy, himl-flake8, himl-smoke-tests-completed ] if: "!startsWith(github.ref, 'refs/tags/v')" strategy: matrix: @@ -345,7 +345,7 @@ jobs: himl-publish-pypi-pkg: runs-on: ubuntu-20.04 - needs: [ himl-test-artifact-pkg, himl-pyright, himl-mypy, himl-flake8, himl-smoke-tests-completed ] + needs: [ himl-test-artifact-pkg, himl-mypy, himl-flake8, himl-smoke-tests-completed ] strategy: matrix: folder: [ hi-ml, hi-ml-azure ]