We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ee6f84 commit 4d3e00fCopy full SHA for 4d3e00f
.circleci/config.yml
@@ -31,6 +31,27 @@ jobs:
31
command: |
32
pytest
33
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
47
+ name: Set environment variables
48
49
+ export EYELINKIO_USE_INSTALLED_EDFAPI=false
50
51
+ name: Run tests
52
53
+ pytest
54
55
build-docs:
56
docker:
57
- image: circleci/python:3.10
@@ -85,6 +106,7 @@ workflows:
85
106
jobs:
86
107
- test
87
108
- build-docs
109
+ - test-macos
88
110
- docs-deploy:
89
111
requires:
90
112
0 commit comments