Files
cibuildwheel/.circleci/config.yml
T

67 lines
1.6 KiB
YAML
Raw Normal View History

2018-09-05 04:15:32 -04:00
version: 2
jobs:
osx-python3.9:
2018-09-05 04:15:32 -04:00
macos:
2021-07-09 13:30:06 -04:00
xcode: 12.5.1
2018-09-05 04:15:32 -04:00
environment:
PYTHON: python3
2018-09-05 04:15:32 -04:00
steps:
- checkout
- run:
name: Prepare the environment.
command: bash .circleci/prepare.sh
2018-09-05 04:15:32 -04:00
- run:
name: Test.
command: venv/bin/python ./bin/run_tests.py
no_output_timeout: 30m
2018-09-05 04:15:32 -04:00
linux-python3.9:
2018-09-05 04:15:32 -04:00
docker:
- image: circleci/python:3.9
2018-09-05 04:15:32 -04:00
environment:
PYTHON: python3
# Temporarily restrict the tests that are run on CircleCI to prevent
# test timeouts.
PYTEST_ADDOPTS: -k "unit_test or main_tests or test_0_basic or test_docker_images"
2018-09-05 04:15:32 -04:00
steps:
- checkout
- setup_remote_docker
- run:
name: Prepare the environment.
command: bash .circleci/prepare.sh
2018-09-05 04:15:32 -04:00
- run:
name: Test.
command: venv/bin/python ./bin/run_tests.py
no_output_timeout: 30m
2018-09-05 04:15:32 -04:00
2022-10-12 13:43:05 +02:00
linux-aarch64:
machine:
image: ubuntu-2004:2022.04.1
resource_class: arm.medium
environment:
PYTHON: python3
# Temporarily restrict the tests that are run on CircleCI to prevent
# test timeouts.
PYTEST_ADDOPTS: -k "unit_test or main_tests or test_0_basic or test_docker_images"
steps:
- checkout
- run:
name: Prepare the environment.
command: bash .circleci/prepare.sh
- run:
name: Test.
command: venv/bin/python ./bin/run_tests.py
no_output_timeout: 30m
2018-09-05 04:15:32 -04:00
workflows:
version: 2
all-tests:
jobs:
- osx-python3.9
- linux-python3.9
2022-10-12 13:43:05 +02:00
- linux-aarch64