From ddae80edc05f9be02e5661da8ad61a3aeb72b747 Mon Sep 17 00:00:00 2001 From: Austin Huang <65315367+austingmhuang@users.noreply.github.com> Date: Tue, 30 Jul 2024 09:38:27 -0400 Subject: [PATCH] delete ibmq tests since the tests they run have been deleted (#579) --- .github/workflows/ibmq_tests.yml | 44 -------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/ibmq_tests.yml diff --git a/.github/workflows/ibmq_tests.yml b/.github/workflows/ibmq_tests.yml deleted file mode 100644 index edbf3e7f8..000000000 --- a/.github/workflows/ibmq_tests.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: IBMQ integration tests with Qiskit 1.0 -on: - schedule: - - cron: '1 0 * * 0,4' # At 01:00 on Sunday and Thursday. - workflow_dispatch: - -jobs: - tests: - runs-on: ubuntu-latest - - strategy: - matrix: - python-version: [3.9] - - steps: - - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.4.1 - with: - access_token: ${{ github.token }} - - - uses: actions/checkout@v2 - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: ${{ matrix.python-version }} - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements-ci.txt - pip install wheel pytest pytest-cov pytest-mock flaky --upgrade - pip freeze - - - name: Install Plugin - run: | - pip install git+https://github.com/PennyLaneAI/pennylane-qiskit.git@${{ github.ref }} - pip freeze - - - name: Run tests - # Only run IBMQ and Runtime tests (skipped otherwise) - run: python -m pytest tests -k 'test_ibmq.py or test_runtime.py' --cov=pennylane_qiskit --cov-report=term-missing --cov-report=xml -p no:warnings --tb=native - env: - IBMQX_TOKEN: ${{ secrets.IBMQX_TOKEN_TEST }}