forked from spacetx/starfish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
79 lines (79 loc) · 3.51 KB
/
.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
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
language: python
env:
global:
- STARFISH_CONFIG=@$TRAVIS_BUILD_DIR/.travis-config.json
services:
- docker
python:
- 3.6
dist: trusty
stages:
- test
jobs:
include:
- name: Syntax and Fast Tests
if: type != cron
script: make install-dev fast
after_success:
- bash <(curl -s https://codecov.io/bash)
- name: Slow Tests
if: type != cron
script: make install-dev && make -j check-notebooks slow-test
after_success:
- bash <(curl -s https://codecov.io/bash)
- name: Install Napari
if: type = push and branch =~ /^(master|merge)/
script: pip install .[napari]
- name: Docker
if: type = push and branch =~ /^(master|merge)/
script: make docker
- name: smFISH Notebook
if: type = push and branch =~ /^(master|merge)/
script: travis_wait make install-dev notebooks/py/smFISH.py
- name: MERFISH Notebook
if: type = push and branch =~ /^(master|merge)/
script: travis_wait make install-dev notebooks/py/MERFISH.py
- name: osmFISH Notebook
if: type = push and branch =~ /^(master|merge)/
script: make install-dev notebooks/py/osmFISH.py
- name: DARTFISH Notebook
if: type = push and branch =~ /^(master|merge)/
script: make install-dev notebooks/py/DARTFISH.py
- name: Simulation Notebook
if: type = push and branch =~ /^(master|merge)/
script: make install-dev notebooks/py/Starfish_simulation.py
- name: ISS Notebook
if: type = push and branch =~ /^(master|merge)/
script: make install-dev notebooks/py/ISS.py
- name: BaristaSeq Notebook
if: type = push and branch =~ /^(master|merge)/
script: make install-dev notebooks/py/BaristaSeq.py
- name: SeqFISH Notebook
if: type = push and branch =~ /^(master|merge)/
script: make install-dev notebooks/py/SeqFISH.py
# - name: STARmap Notebook
# if: type = push and branch =~ /^(master|merge)/
# script: make install-dev notebooks/py/STARmap.py
- name: 3D smFISH data processing example
if: type = push and branch =~ /^(master|merge)/
script: make install-dev 3d_smFISH.py
- name: iss_cli.sh data processing example
if: type = push and branch =~ /^(master|merge)/
script: make install-dev iss_cli.sh
- name: iss_pipeline.py data processing example
if: type = push and branch =~ /^(master|merge)/
script: make TESTING=1 install-dev iss_pipeline.py
- name: Released Notebooks
if: type = cron and branch =~ /^(master|merge)/
script: make check-notebooks install-released-notebooks-support run-notebooks
- name: Check Requirements
if: type = cron and branch =~ /^master$/
script: make refresh-all-requirements check-requirements
cache:
directories:
- $HOME/.cache/pip
- $HOME/.starfish/cache
notifications:
slack:
secure: Za1Zbbx/SE0qeRZxoRtheMeOmRawhUF0TCM18wU627bEWIPjxKgVETrgu/eLnANi003dToIVDQJ2XMWhNFADbvw0fTnnbekksvOAeWo0LxOlIW6T5rSQJQ3l301dKZ0AmGryM8qonPoztS4MJtDbGvThNI6u4wDSQfqiHk2qkohCNgx1xbMgU704CZ795q/2Gua0G1QABwElbbHhWa4HBN/eXX5+nYNo25JcG+DsnKheHPgTTWzzrXVAsjSa4LmRDmJWNn1hdG9QpVs2jcZjcs2WtFzpJt5N+A6MMtW4StsKh/b8QU7LMDhBOGT0H4fnGA8fu5UV9QNT6W0h8KhSBVtsCBzbLKN/6NzZ8vXZ3a/n+h3nWRw2A+8/txWcIAjlO/GT22UJs5uawmHmAC58PZcDbiD4ha1VUD6MKmqpNThOg4NZSBPcj9NplK1f7hBRkSY2bW9aY1WdY7IbqwV4vmfxm6fHwanAkJpd2tFXOT3pMuaHBaN01BNmrY4lfjL6dn3kErmaPV14Sw55ue/kDBwZ2nBkOWkjfTB72WB1inn2zig81BRmJT7gUEXRnGETVPI+HjqXqtK8nAQGD423hBmnLvk7RZ9PkhC9CClwmLUbXLlFHC48CrsucUAkEFxc6ApNwxu8E9Q7gJZnxFEWKkAPf2sexF9o/iHZPssVtYM=
on_success: change