From 61582035798a297a39bfe091b71c4db032c08d32 Mon Sep 17 00:00:00 2001 From: Jonatas oliveira lima da silva Date: Wed, 22 Apr 2020 14:36:36 -0300 Subject: [PATCH 1/2] Remover acento til no nome da funcao Funcao "def teste_intervalo_de_colisao_nao_padrao(self):" na linha 200 havia um til --- testes/fase_testes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testes/fase_testes.py b/testes/fase_testes.py index 8158a43f5..dc0dcfbd3 100644 --- a/testes/fase_testes.py +++ b/testes/fase_testes.py @@ -179,7 +179,7 @@ def teste_lancar_passaro_sem_erro_quando_nao_existe_passaro(self): self.assertTrue(passaros[0].foi_lancado()) self.assertTrue(passaros[1].foi_lancado()) - def teste_intervalo_de_colisao_padrão(self): + def teste_intervalo_de_colisao_padrao(self): ''' Método que testa se o intervalo de colisão da Fase é repassado aos atores. Padrão de intervalo é 1 From 47f62f3b00da56f47fa1fdf54165c29fcc7b3bcd Mon Sep 17 00:00:00 2001 From: engnogueira Date: Wed, 14 Oct 2020 21:05:49 +0000 Subject: [PATCH 2/2] Fully automate dev setup with Gitpod This commit implements a fully-automated development setup using Gitpod.io, an online IDE for GitHub and GitLab that enables Dev-Environments-As-Code. This makes it easy for anyone to get a ready-to-code workspace for any branch, issue or pull request almost instantly with a single click. --- .gitpod.Dockerfile | 7 +++++++ .gitpod.yml | 6 ++++++ README.md | 2 ++ 3 files changed, 15 insertions(+) create mode 100644 .gitpod.Dockerfile create mode 100644 .gitpod.yml diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile new file mode 100644 index 000000000..f8e49f267 --- /dev/null +++ b/.gitpod.Dockerfile @@ -0,0 +1,7 @@ +FROM gitpod/workspace-full + +# 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/ diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 000000000..475c7d9ad --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,6 @@ +image: + file: .gitpod.Dockerfile + +tasks: + - init: 'echo "TODO: Replace with init/build command"' + command: 'echo "TODO: Replace with command to start project"' diff --git a/README.md b/README.md index 78b9e1abb..cbb6dfb5e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/pythonprobr/pythonbirds) + Python Birds ===========