-
Notifications
You must be signed in to change notification settings - Fork 60
53 lines (48 loc) · 1.31 KB
/
run-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
name: Tests
on: [push, pull_request]
jobs:
Linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10.13
uses: actions/setup-python@v3
with:
python-version: 3.10.13
- name: Linting
run: |
pip install pre-commit
pre-commit run --all-files
Linux:
needs: Linting
runs-on: ubuntu-latest
strategy:
max-parallel: 8
matrix:
python-version: [3.10.13]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -e .[dev]
# pip install -r requirements-dev.txt
- name: Test with pytest
run: |
py.test test
- name: Generate coverage report
run: |
pip install pytest==7.4.4
pip install pytest-cov==4.1.0
pytest --cov=./ --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
# - uses: actions/cache@v1
# with:
# path: ~/.cache/pip
# key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }}
# restore-keys: |
# ${{ runner.os }}-pip-