-
Notifications
You must be signed in to change notification settings - Fork 10
46 lines (41 loc) · 1017 Bytes
/
test.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
name: test
on:
push:
branches:
- main
pull_request:
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
timeout-minutes: 30
steps:
- uses: actions/checkout@main
- uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest && pip install pytest-cov
pip install -e .
pip install -e ".[rasa]"
- name: Unit tests and coverage
run: |
pytest -k "not gpt" \
--doctest-modules \
nl2ltl tests \
--cov=nl2ltl \
--cov-report=xml \
--cov-report=html \
--cov-report=term \
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true