forked from pola-rs/polars
-
Notifications
You must be signed in to change notification settings - Fork 0
141 lines (117 loc) · 3.46 KB
/
test-python.yaml
File metadata and controls
141 lines (117 loc) · 3.46 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
name: Test Python
on:
pull_request:
paths:
- 'py-polars/**'
- 'polars/**'
- '.github/workflows/test-python.yaml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
working-directory: py-polars
jobs:
ubuntu:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'py-polars/requirements-dev.txt'
- name: Create virtual environment
run: |
python -m venv venv
echo "$GITHUB_WORKSPACE/py-polars/venv/bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements-dev.txt
# Allow untyped calls for older Python versions
- name: Run mypy
run: mypy ${{ (matrix.python-version == '3.7') && '--allow-untyped-calls' || '' }}
- name: Set up Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2022-12-20
- name: Cache Rust
uses: Swatinem/rust-cache@v2
with:
workspaces: py-polars
- name: Install Polars
env:
RUSTFLAGS: -C debuginfo=0 # Do not produce debug symbols to keep memory usage down
run: |
source activate
maturin develop
- name: Run tests and report coverage
run: pytest --cov
- name: Run doctests
run: python tests/docs/run_doc_examples.py
- name: Check import without optional dependencies
run: |
declare -a deps=("pandas"
"pyarrow"
"fsspec"
"matplotlib"
"backports.zoneinfo"
"connectorx"
"deltalake"
"xlsx2csv"
)
for d in "${deps[@]}"
do
echo "uninstall $i and check imports..."
pip uninstall "$d" -y
python -c 'import polars'
done
windows:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'py-polars/requirements-dev.txt'
- name: Install Python dependencies
run: |
pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Set up Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2022-12-20
- name: Cache Rust
uses: Swatinem/rust-cache@v2
with:
workspaces: py-polars
- name: Install Polars
shell: bash
env:
RUSTFLAGS: -C debuginfo=0 # Do not produce debug symbols to keep memory usage down
run: |
maturin build
pip install target/wheels/polars-*.whl
- name: Run tests
run: pytest
- name: Check import without optional dependencies
run: |
pip uninstall pandas -y
python -c 'import polars'
pip uninstall numpy -y
python -c 'import polars'
pip uninstall pyarrow -y
python -c 'import polars'