mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-15 12:47:56 +08:00
* update dependencies - minor revisions * update min node_js version to 10 * major npm package dep updates * a few more updates
29 lines
560 B
YAML
29 lines
560 B
YAML
language: python
|
|
dist: xenial
|
|
sudo: required
|
|
node_js:
|
|
- 10
|
|
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
|