-
Notifications
You must be signed in to change notification settings - Fork 1
64 lines (61 loc) · 1.72 KB
/
python-package.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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [ main ]
paths-ignore:
- 'article_data/**'
- 'README.md'
- 'CHANGELOG.md'
- 'CONTRIBUTORS.md'
- 'LICENSE'
- 'tutorials/**'
- 'pictures/**'
pull_request:
branches: [ main ]
paths-ignore:
- 'article_data/**'
- 'README.md'
- 'CHANGELOG.md'
- 'CONTRIBUTORS.md'
- 'LICENSE'
- 'tutorials/**'
- 'pictures/**'
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest]
python-version: [3.11]
runs-on: ${{ matrix.platform }}
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Path to brew
run: |
echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH
- name: Install dependencies
run: |
brew update
brew install mmseqs2
mmseqs -h
pip install -e . --config-settings editable_mode=compat
pip install datapane plotly ontosunburst kaleido
- name: Test with pytest
run: |
pip install pytest pytest-mock
cd test
pytest test_proteomes.py
pytest test_clustering.py
pytest test_annotation.py
pytest test_workflow.py
pytest test_precomputed.py
pytest test_eggnog.py
pytest test_report.py