-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (27 loc) · 718 Bytes
/
Copy pathci.yml
File metadata and controls
34 lines (27 loc) · 718 Bytes
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
name: Python CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
env:
TESTING: "true"
PYTHONPATH: "."
BITSANDBYTES_NOWELCOME: "1"
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest httpx fastapi pydantic-settings pandas scikit-learn
- name: Run tests
run: |
python -m pytest tests/test_data.py tests/test_api.py