repo2docker/.travis.yml

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/*