16 lines
404 B
YAML
16 lines
404 B
YAML
---
|
|
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
|