From c869073bd56779fe3d1a046e351b84593c14ae9d Mon Sep 17 00:00:00 2001 From: Chris Holdgraf Date: Wed, 27 Jun 2018 13:20:55 -0700 Subject: [PATCH] adding a few more tests --- tests/external/reproductions.repos.yaml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/tests/external/reproductions.repos.yaml b/tests/external/reproductions.repos.yaml index defba917..e98b3b92 100644 --- a/tests/external/reproductions.repos.yaml +++ b/tests/external/reproductions.repos.yaml @@ -1,10 +1,26 @@ # A bunch of external repos that reproduce something cool we care about +# Test that a full remote/hash works - name: LIGO Gravitational Waves url: https://github.com/minrk/ligo-binder/ ref: origin/b8259dac9eb verify: python -c 'import matplotlib' -# To test that ref is added if not present +# 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' +# 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'