File tree 4 files changed +9
-10
lines changed
4 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -35,11 +35,11 @@ jobs:
35
35
-r dev_tools/requirements/deps/pytest.txt \
36
36
-r dev_tools/requirements/deps/notebook.txt
37
37
- name : Run Quil dependencies
38
- run : docker- compose -f cirq-rigetti/docker-compose.test.yaml up -d
38
+ run : docker compose -f cirq-rigetti/docker-compose.test.yaml up -d
39
39
- name : Pytest check
40
40
run : check/pytest -n auto --ignore=cirq-core/cirq/contrib --rigetti-integration --enable-slow-tests
41
41
- name : Stop Quil dependencies
42
- run : docker- compose -f cirq-rigetti/docker-compose.test.yaml down
42
+ run : docker compose -f cirq-rigetti/docker-compose.test.yaml down
43
43
windows :
44
44
name : Pytest Windows
45
45
strategy :
Original file line number Diff line number Diff line change @@ -166,11 +166,11 @@ jobs:
166
166
pip install wheel
167
167
pip install --upgrade --upgrade-strategy eager -r dev_tools/requirements/dev.env.txt
168
168
- name : Run Quil dependencies
169
- run : docker- compose -f cirq-rigetti/docker-compose.test.yaml up -d
169
+ run : docker compose -f cirq-rigetti/docker-compose.test.yaml up -d
170
170
- name : Pytest check
171
171
run : check/pytest -n auto --durations=20 --ignore=cirq-core/cirq/contrib --rigetti-integration
172
172
- name : Stop Quil dependencies
173
- run : docker- compose -f cirq-rigetti/docker-compose.test.yaml down
173
+ run : docker compose -f cirq-rigetti/docker-compose.test.yaml down
174
174
pip-compile :
175
175
name : Check consistency of requirements
176
176
runs-on : ubuntu-20.04
@@ -221,15 +221,15 @@ jobs:
221
221
pip install wheel
222
222
pip install --upgrade --upgrade-strategy eager -r dev_tools/requirements/dev.env.txt
223
223
- name : Run Quil dependencies
224
- run : docker- compose -f cirq-rigetti/docker-compose.test.yaml up -d
224
+ run : docker compose -f cirq-rigetti/docker-compose.test.yaml up -d
225
225
- name : Coverage check
226
226
run : check/pytest-and-incremental-coverage -n auto --rigetti-integration
227
227
- name : Upload coverage reports to Codecov
228
228
uses : codecov/codecov-action@v4
229
229
env :
230
230
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
231
231
- name : Stop Quil dependencies
232
- run : docker- compose -f cirq-rigetti/docker-compose.test.yaml down
232
+ run : docker compose -f cirq-rigetti/docker-compose.test.yaml down
233
233
windows :
234
234
name : Pytest Windows
235
235
strategy :
Original file line number Diff line number Diff line change 1
1
virtualenvwrapper
2
2
pandoc
3
3
docker-ce
4
- docker-compose
Original file line number Diff line number Diff line change @@ -100,9 +100,9 @@ See the previous section for instructions.
100
100
` ` ` bash
101
101
cat apt-system-requirements.txt dev_tools/conf/apt-list-dev-tools.txt | xargs sudo apt-get install --yes
102
102
` ` `
103
-
104
- This installs docker and docker-compose among other things. You may need to restart
105
- docker or configure permissions, see
103
+
104
+ This installs docker among other things. You may need to restart
105
+ docker or configure permissions, see
106
106
[docker install instructions](https://docs.docker.com/engine/install/ubuntu/).
107
107
Note that docker is necessary only for cirq_rigetti.
108
108
You can’t perform that action at this time.
0 commit comments