-
Notifications
You must be signed in to change notification settings - Fork 25
69 lines (56 loc) · 1.72 KB
/
pytest-slow.yml
File metadata and controls
69 lines (56 loc) · 1.72 KB
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
name: Run pytest for slow tests
on: [push]
jobs:
build:
if: "!contains(github.event.head_commit.message, 'ci skip')"
runs-on: ${{ matrix.os-python.image }}
strategy:
max-parallel: 4
matrix:
os-python:
- image: ubuntu-latest
python-version: '3.11'
numpy-version: ['numpy~=2.1.0']
# incompatible with scipy>=1.15.0 because of the pickled elements
scipy-version: ['scipy~=1.14.0']
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.os-python.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.os-python.python-version }}
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt "${{ matrix.numpy-version }}" "${{ matrix.scipy-version }}"
pip list
- name: Install package
run: |
pip install .
- name: Lint with flake8
run: |
pip install flake8
# stop the build if there are Python syntax errors
# or undefined names
flake8 \
--count \
--exclude .git,build,__pycache__ \
--select=E9,F63,F7,F82 \
--show-source \
--statistics \
.
# exit-zero treats all errors as warnings.
# The GitHub editor is 127 chars wide
flake8 \
--count \
--exclude .git,build,__pycache__ \
--exit-zero \
--max-complexity=10 \
--max-line-length=127 \
--statistics \
.
- name: Test with pytest
run: |
pip install pytest
pytest -vv -m slow