Skip to content

Commit f8adfa8

Browse files
committed
temp
1 parent 337d5ae commit f8adfa8

File tree

1 file changed

+53
-43
lines changed

1 file changed

+53
-43
lines changed

.circleci/config.yml

Lines changed: 53 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
version: 2.1
22

33
orbs:
4+
node: circleci/node@7
45
ocean: dwave/ocean@1
56
windows: circleci/[email protected]
67

@@ -217,6 +218,14 @@ jobs:
217218
pip install twine
218219
twine check dist/*
219220
221+
test-pa11y:
222+
docker:
223+
- image: buildkite/puppeteer:v1.15.0
224+
225+
steps:
226+
- checkout
227+
- run: npm install --global --unsafe-perm pa11y-ci
228+
220229
deploy:
221230
docker:
222231
- image: python:3.12
@@ -252,46 +261,47 @@ workflows:
252261
not:
253262
equal: [scheduled_pipeline, << pipeline.trigger_source >>]
254263
jobs:
255-
- test-linux:
256-
matrix:
257-
parameters:
258-
python-version: &python-versions ["3.9.21", "3.10.16", "3.11.11", "3.12.8", "3.13.1"]
259-
- test-macos:
260-
matrix:
261-
parameters:
262-
python-version: *python-versions
263-
- test-windows:
264-
matrix:
265-
parameters:
266-
# note: limit to versions available via nuget
267-
python-version: &python-versions-windows ["3.9.13", "3.10.11", "3.11.9", "3.12.8", "3.13.1"]
268-
# - test-individual-pkgs
269-
- test-doctest
270-
- test-package-build
271-
272-
deploy:
273-
jobs:
274-
- deploy:
275-
filters: &on-tag-push
276-
tags:
277-
only: /^[0-9]+(\.[0-9]+)*((\.dev|rc)([0-9]+)?)?$/
278-
branches:
279-
ignore: /.*/
280-
281-
nightly:
282-
when:
283-
equal: [nightly, << pipeline.schedule.name >>]
284-
jobs:
285-
- test-linux:
286-
matrix:
287-
parameters:
288-
python-version: *python-versions
289-
- test-macos:
290-
matrix:
291-
parameters:
292-
python-version: *python-versions
293-
- test-windows:
294-
matrix:
295-
parameters:
296-
python-version: *python-versions-windows
297-
- test-doctest
264+
# - test-linux:
265+
# matrix:
266+
# parameters:
267+
# python-version: &python-versions ["3.9.21", "3.10.16", "3.11.11", "3.12.8", "3.13.1"]
268+
# - test-macos:
269+
# matrix:
270+
# parameters:
271+
# python-version: *python-versions
272+
# - test-windows:
273+
# matrix:
274+
# parameters:
275+
# # note: limit to versions available via nuget
276+
# python-version: &python-versions-windows ["3.9.13", "3.10.11", "3.11.9", "3.12.8", "3.13.1"]
277+
# # - test-individual-pkgs
278+
# - test-doctest
279+
# - test-package-build
280+
- test-pa11y
281+
282+
# deploy:
283+
# jobs:
284+
# - deploy:
285+
# filters: &on-tag-push
286+
# tags:
287+
# only: /^[0-9]+(\.[0-9]+)*((\.dev|rc)([0-9]+)?)?$/
288+
# branches:
289+
# ignore: /.*/
290+
291+
# nightly:
292+
# when:
293+
# equal: [nightly, << pipeline.schedule.name >>]
294+
# jobs:
295+
# - test-linux:
296+
# matrix:
297+
# parameters:
298+
# python-version: *python-versions
299+
# - test-macos:
300+
# matrix:
301+
# parameters:
302+
# python-version: *python-versions
303+
# - test-windows:
304+
# matrix:
305+
# parameters:
306+
# python-version: *python-versions-windows
307+
# - test-doctest

0 commit comments

Comments
 (0)