-
Notifications
You must be signed in to change notification settings - Fork 24
79 lines (75 loc) · 2.58 KB
/
tests.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Tests
on:
- push
- pull_request
jobs:
test-minimal-deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pipx install poetry
- name: Update setuptools
run: python -m pip install --upgrade pip setuptools
- name: Install poetry dependencies
run: |
poetry install -E dev
- name: Setup git
run: |
git config --global user.name "CoLRev update"
git config --global user.email "[email protected]"
git config --global url.https://github.com/.insteadOf git://github.com/
- name: Run poetry tests (minimal-deps)
run: poetry run pytest tests/0_core/ -vv
test-full-deps:
needs: test-minimal-deps
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pipx install poetry
- name: Install poetry dependencies
run: |
poetry install -E dev || echo "No dev extra"
- name: Setup git
run: |
git config --global user.name "CoLRev update"
git config --global user.email "[email protected]"
git config --global url.https://github.com/.insteadOf git://github.com/
- name: Run poetry tests
run: poetry run pytest --slow -vv
test-pip-install:
needs: test-minimal-deps
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install via pip
run: |
pip install -e .[dev]
- name: Setup git
run: |
git config --global user.name "CoLRev update"
git config --global user.email "[email protected]"
git config --global url.https://github.com/.insteadOf git://github.com/
- name: Run tests
run: pytest tests --slow -vv