forked from gregmalcolm/python_koans
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request gregmalcolm#1 from brootware/brootware/gitpod-setup
Brootware/gitpod setup
- Loading branch information
Showing
3 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Install custom tools, runtimes, etc. | ||
# For example "bastet", a command-line tetris clone: | ||
# RUN brew install bastet | ||
# | ||
# More information: https://www.gitpod.io/docs/config-docker/ | ||
|
||
FROM gitpod/workspace-full:latest | ||
|
||
USER gitpod | ||
|
||
RUN pip3 install pytest==4.4.2 pytest-testdox mock |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
image: | ||
file: .gitpod.Dockerfile | ||
|
||
tasks: | ||
- command: python contemplate_koans.py | ||
|
||
github: | ||
prebuilds: | ||
# enable for the master/default branch (defaults to true) | ||
master: true | ||
# enable for pull requests coming from this repo (defaults to true) | ||
pullRequests: false | ||
# add a "Review in Gitpod" button as a comment to pull requests (defaults to true) | ||
addComment: false |
This file contains 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