Skip to content

Commit 9f28301

Browse files
authored
Merge pull request gregmalcolm#1 from brootware/brootware/gitpod-setup
Brootware/gitpod setup
2 parents 45738bb + aa55169 commit 9f28301

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

.gitpod.Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Install custom tools, runtimes, etc.
2+
# For example "bastet", a command-line tetris clone:
3+
# RUN brew install bastet
4+
#
5+
# More information: https://www.gitpod.io/docs/config-docker/
6+
7+
FROM gitpod/workspace-full:latest
8+
9+
USER gitpod
10+
11+
RUN pip3 install pytest==4.4.2 pytest-testdox mock

.gitpod.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
image:
2+
file: .gitpod.Dockerfile
3+
4+
tasks:
5+
- command: python contemplate_koans.py
6+
7+
github:
8+
prebuilds:
9+
# enable for the master/default branch (defaults to true)
10+
master: true
11+
# enable for pull requests coming from this repo (defaults to true)
12+
pullRequests: false
13+
# add a "Review in Gitpod" button as a comment to pull requests (defaults to true)
14+
addComment: false

README.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ Python Koans
55
.. image:: https://travis-ci.org/gregmalcolm/python_koans.png?branch=master
66
:target: http://travis-ci.org/gregmalcolm/python_koans
77

8+
.. image:: https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod
9+
:target: https://gitpod.io/#https://github.com/gregmalcolm/python_koans
10+
11+
One click installation:
12+
-----------------------
13+
14+
.. image:: https://gitpod.io/button/open-in-gitpod.svg
15+
:target: https://gitpod.io/#https://github.com/gregmalcolm/python_koans
16+
817
Python Koans is a port of Edgecase's "Ruby Koans" which can be found
918
at http://rubykoans.com/.
1019

0 commit comments

Comments
 (0)