-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (41 loc) · 1.1 KB
/
pytest.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
name: Pytest
on:
push:
paths:
- "**/*.py"
- "tests/"
- "pyproject.toml"
- "poetry.lock"
- ".github/workflows/pytest.yml"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
env:
LT_HOME: foo/lt/home
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Set up Poetry
uses: Gr1N/setup-poetry@v8
- name: Check Poetry config
run: poetry check
- name: Install dependencies
run: poetry install --with test
env:
POETRY_HTTP_BASIC_GITLAB_USERNAME: "lt-ai-package-registry"
POETRY_HTTP_BASIC_GITLAB_PASSWORD: ${{ secrets.POETRY_HTTP_BASIC_GITLAB_PASSWORD }}
- name: Install spaCy pipeline
run: poetry run spacy download pt_core_news_sm
- name: Pytest
uses: pavelzw/pytest-action@v2
with:
custom-pytest: "poetry run pytest"
emoji: true
verbose: true
job-summary: true