From 9fc8db9fc6276bf34bf1b525442ad651db1100bc Mon Sep 17 00:00:00 2001 From: "Jens H. Nielsen" Date: Mon, 2 Oct 2023 11:11:54 +0200 Subject: [PATCH] remove non local job --- .github/workflows/pytest-non-local.yaml | 51 ------------------------- 1 file changed, 51 deletions(-) delete mode 100644 .github/workflows/pytest-non-local.yaml diff --git a/.github/workflows/pytest-non-local.yaml b/.github/workflows/pytest-non-local.yaml deleted file mode 100644 index 97a2cfde83c2..000000000000 --- a/.github/workflows/pytest-non-local.yaml +++ /dev/null @@ -1,51 +0,0 @@ -name: run qcodes.pytest() - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true -on: - push: - branches: - - 'master' - - 'release/*' - tags: - - 'v*' - pull_request: - merge_group: - branches: ['master'] - -jobs: - pytestnonlocal: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.9"] - - steps: - - uses: actions/checkout@v4.1.0 - with: - submodules: true - # we need full history with tags for the version number - fetch-depth: '0' - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4.3.1 - with: - python-version: ${{ matrix.python-version }} - cache: 'pip' - cache-dependency-path: | - pyproject.toml - requirements.txt - - name: upgrade pip setuptools wheel - run: python -m pip install --upgrade pip setuptools wheel - shell: bash - - name: install qcodes - run: | - pip install .[test] -c requirements.txt - - name: Test with pytest - run: | - cd .. - mkdir empty - cd empty - cp ../Qcodes/pyproject.toml . - python -c "import sys; import qcodes; ec = qcodes.test(); sys.exit(ec)"