-
Notifications
You must be signed in to change notification settings - Fork 81
47 lines (41 loc) · 1.41 KB
/
python_tests.yaml
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
42
43
44
45
46
47
# .github/workflows/python_tests.yml
name: Python Tests
on:
push:
branches:
- main
pull_request_target:
types:
- opened
- labeled
jobs:
test:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'okay-to-test') || (github.event_name == 'push')
steps:
# https://github.com/actions/checkout/issues/518
- name: Check out code
uses: actions/checkout@v3
with:
ref: "${{ github.event.pull_request.merge_commit_sha }}"
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: make init
- name: Run tests
working-directory: python-sdk
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
BILLING_RATE_INT_10K: ${{ secrets.BILLING_RATE_INT_10K }}
MASTER_API_KEY: ${{ secrets.MASTER_API_KEY }}
MASTER_CREDIT_AMOUNT: ${{ secrets.MASTER_CREDIT_AMOUNT }}
NEXT_PUBLIC_SUPABASE_ANON_KEY: ${{ secrets.NEXT_PUBLIC_SUPABASE_ANON_KEY }}
NEXT_PUBLIC_SUPABASE_URL: ${{ secrets.NEXT_PUBLIC_SUPABASE_URL }}
PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }}
PINECONE_ENVIRONMENT: ${{ secrets.PINECONE_ENVIRONMENT }}
PINECONE_INDEX_NAME: ${{ secrets.PINECONE_INDEX_NAME }}
SUPABASE_SERVICE_KEY: ${{ secrets.SUPABASE_SERVICE_KEY }}
run: |
pytest