Add Concourse CI configs
This commit is contained in:
parent
5a06530b43
commit
66c8153d72
7 changed files with 272 additions and 0 deletions
16
ci/tasks/registry.yaml
Normal file
16
ci/tasks/registry.yaml
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
platform: linux
|
||||
inputs:
|
||||
- name: quay-pull-request
|
||||
run:
|
||||
path: /bin/sh
|
||||
args:
|
||||
- -c
|
||||
- |
|
||||
set -eux
|
||||
export TEST=true
|
||||
pip install --quiet -r quay-pull-request/requirements.txt
|
||||
pip install --quiet -r quay-pull-request/requirements-tests.txt
|
||||
cd quay-pull-request
|
||||
PYTHONPATH="." py.test --timeout=7200 --verbose \
|
||||
--show-count -x test/registry_tests.py
|
Reference in a new issue