forked from scverse/scanpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
36 lines (36 loc) · 899 Bytes
/
.travis.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
dist: xenial
language: python
branches:
only:
- master # All other branches should become (draft) PRs and be build that way
matrix:
include:
- name: "static analysis"
python: "3.7"
install:
- pip install .[dev,doc]
script:
- black . --check --diff
- python -m scanpy.tests.blackdiff 10
- python setup.py check --restructuredtext --strict
- rst2html.py --halt=2 README.rst >/dev/null
after_success: skip
- name: "anndata dev"
python: "3.7"
install:
- pip install .[dev,test,louvain,leiden,magic,scvi,harmony,skmisc]
- pip install git+https://github.com/theislab/anndata
python:
- '3.6'
- '3.7'
#- '3.8-dev' # https://github.com/numpy/numpy/issues/13790
cache:
- pip
- directories:
- data
install:
- pip install .[dev,test,louvain,leiden,magic,scvi,harmony,skmisc]
env:
- MPLBACKEND=Agg
script:
- pytest --ignore=scanpy/tests/_images