Skip to content

Commit

Permalink
trying to fix CI failure
Browse files Browse the repository at this point in the history
  • Loading branch information
doichanj committed Jul 4, 2024
1 parent 9a4f283 commit 48a0d8e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/neko.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ on:
branches: ['main', 'stable/*']
concurrency:
group: ${{ github.repository }}-${{ github.ref }}-${{ github.head_ref }}-${{ github.workflow }}
cancel-in-progress: true
# Only cancel in PR mode. In push mode, don't cancel so we don't see spurious test "failures".
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
neko:
name: Qiskit Neko Integration Tests
Expand All @@ -16,4 +17,5 @@ jobs:
test_selection: backend
repo_install_command: |
pip install conan
pip install .
pip uninstall -y qiskit qiskit-terra qiskit-aer
pip install -c constraints.txt .
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake!=3.17.1,!=3.17.0
conan<2.0.0
scikit-build>=0.11.0
asv
cvxpy>=1.0.0,<1.1.15;platform_system != 'Windows' and python_version < '3.11'
cvxpy
pylint
black[jupyter]~=24.1
clang-format~=15.0.7
Expand Down

0 comments on commit 48a0d8e

Please sign in to comment.