mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-25 13:58:12 +08:00
20 lines
362 B
YAML
20 lines
362 B
YAML
language: python
|
|
python:
|
|
- "3.6"
|
|
node_js:
|
|
- "8"
|
|
cache:
|
|
pip: true
|
|
install:
|
|
- set -eo pipefail
|
|
- pip install flake8
|
|
- ./bin/build-client
|
|
- pip install -e .
|
|
- pip install -r server/requirements-dev.txt
|
|
script:
|
|
- set -eo pipefail
|
|
- flake8 server/app/
|
|
- npm run --prefix client/ build
|
|
- npm run --prefix client/ test
|
|
- pytest -s server/test
|