-
-
Notifications
You must be signed in to change notification settings - Fork 9
62 lines (56 loc) · 1.53 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Run tests
on:
push:
branches:
- main
paths-ignore:
- "docs/**"
pull_request:
paths-ignore:
- "docs/**"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
name: Set up Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: conda-incubator/setup-miniconda@v2
with:
channels: conda-forge, defaults
channel-priority: true
python-version: ${{ matrix.python-version }}
auto-update-conda: true
- name: Install preliz
shell: bash -l {0}
run: |
conda install pip
pip install -r requirements-dev.txt
pip install ".[full]"
python --version
conda list
pip freeze
- name: Run linters
shell: bash -l {0}
run: |
python -m black preliz --check
echo "Success!"
echo "Checking code style with pylint..."
python -m pylint preliz/
- name: Run tests
shell: bash -l {0}
run: |
python -m pytest -vv --cov=preliz --cov-report=term --cov-report=xml preliz/tests
env:
PYTHON_VERSION: ${{ matrix.python-version }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: false