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 72d38fb commit 898d8ffCopy full SHA for 898d8ff
.github/workflows/tests.yaml renamed to .github/workflows/lint.yaml
.github/workflows/test.yaml
@@ -0,0 +1,31 @@
1
+name: Run Tests (No SDK)
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ test:
7
+ runs-on: ${{ matrix.os }}
8
+ strategy:
9
+ matrix:
10
+ os: [ubuntu-latest, macos-latest]
11
+ python-version: [3.10]
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - name: Set up Python ${{ matrix.python-version }}
17
+ uses: actions/setup-python@v5
18
+ with:
19
+ python-version: ${{ matrix.python-version }}
20
21
+ - name: Install dependencies
22
+ run: |
23
+ python -m pip install --upgrade pip
24
+ python -m pip install -e ".[dev]"
25
+ run:
26
+ name: Set environment variables
27
+ command: |
28
+ export EYELINKIO_USE_INSTALLED_EDFAPI=false
29
30
+ - name: Run tests
31
+ run: pytest
0 commit comments