mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-27 11:28:11 +08:00
* load annotations individually * fix type check to be more general * update node CI version from 10 to 12 * node 11 * debug print node version * travis node version to latest * try nvm * remove extraneous node_js statement * remove node version debugging printf * incrementally load all annotations and layout * process annotations and layout as they are loaded * fix tests * sort categories incrementally * incrementally build category view summary; add category loading spinner * add spinner to continuous metadata * configure undoable reducer * incremental crossfilter creation * improve busy layout * more layout cleanup * correctly reconcile categories in schema * refine layout of lsb spinners * more spinner layout work * more spinner layout * always load layout before obs annotations
29 lines
581 B
YAML
29 lines
581 B
YAML
language: python
|
|
dist: xenial
|
|
sudo: required
|
|
before_install:
|
|
- nvm install node
|
|
cache:
|
|
- pip
|
|
- npm
|
|
install:
|
|
- set -eo pipefail
|
|
- pip install flake8
|
|
- make pydist install-dist dev-env
|
|
|
|
jobs:
|
|
include:
|
|
- name: "Branch Tests 3.7"
|
|
python: "3.7"
|
|
script: make build-client lint unit-test
|
|
- name: "Branch Tests 3.6"
|
|
python: "3.6"
|
|
script: make build-client lint unit-test
|
|
- name: "Docker Build"
|
|
install: skip
|
|
python: "3.6"
|
|
script: docker build .
|
|
- name: "Smoke Tests"
|
|
python: "3.6"
|
|
script: make smoke-test
|