-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
143 lines (118 loc) · 3.41 KB
/
test-python.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
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
142
143
name: Test Python
on:
pull_request:
paths:
- py-polars/**
- crates/**
- .github/workflows/test-python.yml
push:
branches:
- main
paths:
- crates/**
- py-polars/**
- .github/workflows/test-python.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
RUSTFLAGS: -C debuginfo=0 # Do not produce debug symbols to keep memory usage down
defaults:
run:
working-directory: py-polars
jobs:
ubuntu:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up Graphviz
uses: ts-graphviz/setup-graphviz@v1
- name: Create virtual environment
run: |
python -m venv .venv
echo "$GITHUB_WORKSPACE/py-polars/.venv/bin" >> $GITHUB_PATH
- name: Install dependencies
run: pip install -r requirements-dev.txt
- name: Set up Rust
run: rustup show
- name: Cache Rust
uses: Swatinem/rust-cache@v2
with:
workspaces: py-polars
save-if: ${{ github.ref_name == 'main' }}
- name: Install Polars
run: |
source activate
maturin develop
- name: Run tests and report coverage
if: github.ref_name != 'main'
run: pytest --cov -n auto --dist loadgroup -m "not benchmark and not docs"
- name: Run doctests
if: github.ref_name != 'main'
run: |
python tests/docs/run_doctest.py
pytest tests/docs/test_user_guide.py -m docs
- name: Check import without optional dependencies
if: github.ref_name != 'main'
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 }}
- name: Install Python dependencies
run: pip install -r requirements-dev.txt
- name: Set up Rust
run: rustup show
- name: Cache Rust
uses: Swatinem/rust-cache@v2
with:
workspaces: py-polars
save-if: ${{ github.ref_name == 'main' }}
- name: Install Polars
shell: bash
run: |
maturin build
pip install target/wheels/polars-*.whl
- name: Run tests
if: github.ref_name != 'main'
run: pytest -n auto --dist loadgroup -m "not benchmark and not docs"
- name: Check import without optional dependencies
if: github.ref_name != 'main'
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'