-
Notifications
You must be signed in to change notification settings - Fork 974
41 lines (40 loc) · 1.06 KB
/
ci-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# TODO(user): Fix or skip tests that fail on GitHub
name: ci-tests
on: [
push,
pull_request,
workflow_dispatch, # Enables running this workflow manually from the Actions tab.
]
jobs:
build:
name: "Python ${{ matrix.python-version }} tests on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [
"3.9",
"3.10",
"3.11",
"3.12",
"3.13",
]
include:
- os: macos-latest
python-version: "3.11"
- os: windows-latest
python-version: "3.11"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install EE and dependencies
run: |
pip install ./python[tests]
- name: Test
run: |
python -m unittest discover --pattern="*test.py" --start-directory python/ee/tests