-
Notifications
You must be signed in to change notification settings - Fork 51
61 lines (50 loc) · 1.58 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
name: Test
on:
- pull_request
jobs:
test:
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform:
- ubuntu-latest
- windows-latest
- macos-latest
python-version:
- "3.8"
- "3.9"
- "3.10"
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Prerequisites (Linux)
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get -y install tabix
- name: Install
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev_base.txt -r requirements_test.txt -r requirements_dev_optional.txt -r requirements_rtfd.txt
pip install -e .
- name: Lint
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 allel --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 allel --count --exit-zero --max-line-length=127 --statistics
- name: Test
run: |
pytest -v allel
- name: Test with doctest
if: matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.10'
run: |
pytest -v --cov=allel --doctest-modules allel
coverage report -m
- name: Build docs
if: matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.10'
run: |
cd docs && make html