Files
cibuildwheel/.circleci/config.yml
T

43 lines
832 B
YAML
Raw Normal View History

2018-09-05 04:15:32 -04:00
version: 2
jobs:
osx-python3.6:
2018-09-05 04:15:32 -04:00
macos:
2020-11-22 14:55:04 +01:00
xcode: 9.4.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.6:
2018-09-05 04:15:32 -04:00
docker:
- image: circleci/python:3.6
environment:
PYTHON: python3
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
workflows:
version: 2
all-tests:
jobs:
- osx-python3.6
- linux-python3.6