repo2docker/tests/external/reproductions.repos.yaml

27 wiersze
1.0 KiB
YAML
Czysty Zwykły widok Historia

# A bunch of external repos that reproduce something cool we care about
2018-06-27 20:20:55 +00:00
# Test that a full remote/hash works
- name: LIGO Gravitational Waves
url: https://github.com/minrk/ligo-binder/
2018-04-25 00:15:16 +00:00
ref: origin/b8259dac9eb
verify: python -c 'import matplotlib'
2018-06-27 20:20:55 +00:00
# Test that ref is added if not present
- name: LIGO Gravitational Waves
url: https://github.com/minrk/ligo-binder/
ref: b8259dac9eb
verify: python -c 'import matplotlib'
2018-06-27 20:20:55 +00:00
# Test that a full remote/ref works
- name: Binder Examples - Requirements
url: https://github.com/binder-examples/requirements
ref: origin/master
verify: python -c 'import matplotlib'
# Test that ref is added to branch if not present
- name: Binder Examples - Requirements
url: https://github.com/binder-examples/requirements
ref: master
verify: python -c 'import matplotlib'
# Test that tags work + ref is added to tag if not present
- name: Binder Examples - Requirements
url: https://github.com/binder-examples/requirements
ref: test
verify: python -c 'import matplotlib'