-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (34 loc) · 1.02 KB
/
e2e.yml
File metadata and controls
35 lines (34 loc) · 1.02 KB
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: Run Python SDK E2E Tests
on:
push:
branches:
- '**'
- '!master'
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10.18, 3.11, 3.12]
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup Poetry
uses: abatilo/actions-poetry@v2.1.2
with:
poetry-version: 1.4.2
- name: Install Dependencies
run: |
poetry install
- name: Run Tests
run: poetry run pytest ./e2e -v
env:
EV_APP_UUID: ${{ secrets.EV_APP_UUID_V4 }}
EV_API_KEY: ${{ secrets.EV_API_KEY_V4 }}
EV_FUNCTION_NAME: ${{ secrets.EV_FUNCTION_NAME_V4 }}
EV_INITIALIZATION_ERROR_FUNCTION_NAME:
${{ secrets.EV_INITIALIZATION_ERROR_FUNCTION_NAME }}
EV_SYNTHETIC_ENDPOINT_URL: ${{ secrets.EV_SYNTHETIC_ENDPOINT_URL }}