-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (49 loc) · 1.47 KB
/
pythonpackage.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
name: Python package
on: [push, pull_request]
jobs:
code-quality:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python.
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Lint with flake8
run: |
pip install flake8
flake8 rpy2_r6 --count --max-complexity=10 --max-line-length=127 --statistics
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
r-version: [4.2, 'release']
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up R ${{ matrix.r-version }}
uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.r-version }}
- name: Install R dependencies
run: |
install.packages("R6")
shell: Rscript {0}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install rpy2
- name: Install package
run: |
python setup.py install
- name: Test with pytest
run: |
export LD_LIBRARY_PATH=$(python -m rpy2.situation LD_LIBRARY_PATH):${LD_LIBRARY_PATH}
pip install pytest codecov pytest-cov
pytest --cov rpy2_r6.R6 rpy2_r6/tests*