Skip to content

Commit 84981e3

Browse files
authored
Merge pull request #238 from brootware/brootware/gitpod-setup
Brootware/gitpod setup
2 parents 45738bb + a9c177c commit 84981e3

File tree

3 files changed

+43
-1
lines changed

3 files changed

+43
-1
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: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ 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+
.. image:: https://www.eclipse.org/che/contribute.svg
12+
:target: https://workspaces.openshift.com/f?url=https://gitpod.io/#https://github.com/gregmalcolm/python_koans
13+
14+
One click installation:
15+
-----------------------
16+
17+
.. image:: https://www.eclipse.org/che/contribute.svg
18+
:target: https://workspaces.openshift.com/f?url=https://gitpod.io/#https://github.com/gregmalcolm/python_koans
19+
| or
20+
.. image:: https://gitpod.io/button/open-in-gitpod.svg
21+
:target: https://gitpod.io/#https://gitpod.io/#https://github.com/gregmalcolm/python_koans
22+
23+
|
24+
825
Python Koans is a port of Edgecase's "Ruby Koans" which can be found
926
at http://rubykoans.com/.
1027

@@ -214,4 +231,4 @@ FPIP. So here's a little plug for their very cool Python podcast:
214231
http://frompythonimportpodcast.com/
215232

216233
A big thanks also to Mike Pirnat @pirnat and Kevin Chase @kjc have pitched in
217-
as co-maintainers at various times
234+
as co-maintainers at various times

0 commit comments

Comments
 (0)