Created
June 17, 2019 18:06
-
-
Save rasputnik/243f99cae5c407c335df83ff8cb62d3b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| steps: | |
| - name: python:3.7-alpine | |
| volumes: | |
| - name: virtualenv | |
| path: /testlibs | |
| args: ['pip', 'install', '-t', '/testlibs', '-r', '/workspace/ci-requirements.txt'] | |
| - name: python:3.7-alpine | |
| volumes: | |
| - name: virtualenv | |
| path: /testlibs | |
| entrypoint: /testlibs/bin/pytest | |
| dir: /workspace | |
| env: | |
| - 'PYTHONPATH=/testlibs' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment