kopia lustrzana https://github.com/jupyterhub/repo2docker
23 wiersze
383 B
YAML
23 wiersze
383 B
YAML
language: python
|
|
sudo: required
|
|
services:
|
|
- docker
|
|
python:
|
|
- 3.4
|
|
|
|
install:
|
|
- pip install -e .
|
|
- pip install pytest-xdist pyyaml
|
|
|
|
script:
|
|
# Run at least 4 tests in parallel. These tests are all fully
|
|
# parallelizable
|
|
- pytest -s -v -n4 tests/${REPO_TYPE}
|
|
|
|
env:
|
|
- REPO_TYPE=conda
|
|
- REPO_TYPE=venv
|
|
- REPO_TYPE=julia
|
|
- REPO_TYPE=dockerfile
|
|
- REPO_TYPE=external/*
|