Created
June 29, 2016 11:31
-
-
Save tomas-fp/09a65af7fb1bb5f3e00d270f98a725f1 to your computer and use it in GitHub Desktop.
The usage should be as simple as: $
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
# Docker image to run tests | |
image: python35 | |
# By default, mount CWD | |
mount: /projects/me /test | |
# Optionally, define the CWD in the container | |
directory: /test | |
# Define before test | |
before: | |
- | |
# Shell commands to run as part of the testing pipepile | |
tasks: | |
- make lint | |
- make unit | |
- make e2e | |
# Define after test commands to run | |
after: | |
- echo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment