-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (40 loc) · 1.02 KB
/
integration.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
42
43
44
45
46
47
name: Integration
on:
push:
branches:
- "develop"
pull_request:
repository_dispatch:
types: [alfalfa-update]
jobs:
integration:
name: Integration Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
uses: abatilo/actions-poetry@v3
with:
poetry-version: 1.8.3
- name: Start Alfalfa
uses: NREL/alfalfa-action@v1
with:
tag: "develop"
compose-file-ref: "develop"
worker-scale: 2
- name: Wait for web API
uses: iFaxity/[email protected]
with:
resource: http://localhost
- name: Run tests with poetry and pytest
run: |
poetry install
poetry run pytest -m integration