mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-15 12:47:56 +08:00
* Add smoke test for annotations features
* Do not save during annotations tests
* Fix botched rebase in dev guidelines
* Revert "Do not save during annotations tests"
This reverts commit f0bd970bb2.
* Respond to feedback from @bkmartinjr
32 lines
736 B
YAML
32 lines
736 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 (with Annotations)"
|
|
python: "3.6"
|
|
script: cd client && make smoke-test
|
|
- name: "Smoke Tests (without Annotations)"
|
|
python: "3.6"
|
|
script: cd client && make smoke-test-annotations
|