Skip to content

Commit 4d3e00f

Browse files
committed
WIP: launch macos job on circle
1 parent 0ee6f84 commit 4d3e00f

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.circleci/config.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,27 @@ jobs:
3131
command: |
3232
pytest
3333
34+
test-macos:
35+
macos:
36+
xcode: "latest"
37+
38+
steps:
39+
- checkout
40+
41+
- run:
42+
name: Install dependencies
43+
command: |
44+
python -m pip install --upgrade pip
45+
pip install -e ".[dev]"
46+
- run:
47+
name: Set environment variables
48+
command: |
49+
export EYELINKIO_USE_INSTALLED_EDFAPI=false
50+
- run:
51+
name: Run tests
52+
command: |
53+
pytest
54+
3455
build-docs:
3556
docker:
3657
- image: circleci/python:3.10
@@ -85,6 +106,7 @@ workflows:
85106
jobs:
86107
- test
87108
- build-docs
109+
- test-macos
88110
- docs-deploy:
89111
requires:
90112
- test

0 commit comments

Comments
 (0)