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
name: 'E2E TEST' | |
description: 'E2E Tests foobar' | |
inputs: | |
required_env_key_for_the_tests: | |
required: true | |
foobar_secret: | |
required: true | |
outputs: | |
test_output: | |
description: "Execute tests and return results" |
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
import time | |
import sqlite3 | |
import os.path | |
RESOURCE_TIME_LIMIT = 100 | |
db_path = os.path.dirname(os.path.realpath(__file__)) + '/resources.db' | |
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
import certifi | |
from dynaconf import settings | |
from confluent_kafka.avro import AvroProducer | |
from confluent_kafka import Consumer | |
BASE_CONFIG = { | |
'bootstrap.servers': settings.KAFKA_PRIMARY_BOOTSTRAP_SERVERS, | |
'group.id': 'integrated-tests', | |
'client.id': 'integrated-tests', |
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
#!/bin/bash | |
# Coding Standards fixer from http://cs.sensiolabs.org/ pre-commit hook for git | |
# | |
# Based on https://github.com/s0enke/git-hooks | |
# | |
# @author Soenke Ruempler <[email protected]> | |
# @author Sebastian Kaspari <[email protected]> | |
# | |
# see the README |
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
Diz a lenda pessoas que trabalham com qualidade e teste de software tiveram uma péssima experiência com programação na faculdade, ou acham que para ser testador você não precisa ser técnico e saber programar. | |
Isso não é lenda meu caro leitor. Eu mesmo fui vítima desse processo horrível que se chama curso de análise e desenvolvimento de sistemas. | |
Antes de analisar e entender os motivos desses traumas, preciso pontuar certas coisas: | |
1 - Se você trabalha com testes, **você trabalha com desenvolvimento de software**. Isso quer dizer se você não é uma pessoa técnica provavelmente ficará sem trabalho em breve (~~ hastag Papo reto~~). | |
Rolou um mini debate no twitter sobre a diferença entre ser técnico e saber programar.. mas a diferença é muito sutil, pelo menos no meu ponto de vista. |
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
linha e https://en.lejebolig.dk/lejebolig/1404276/stor-2-vaerelses-i-oelby | |
Rent paid in advance: 8,950 Deposit: 26,850 Payment on account: 900 | |
https://en.lejebolig.dk/lejebolig/1449858/57-m-lejlighed--hellerup | |
Rent. 9,500 kr | |
deposit 28k kr | |
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
<p> | |
<!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>--> | |
<script type="text/javascript"> | |
WebFontConfig = { | |
google: { families: [ 'Lato:400,700:latin' ] } | |
}; | |
(function() { | |
var wf = document.createElement('script'); | |
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') + | |
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js'; |
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
FROM java:8-jdk | |
RUN dpkg --add-architecture i386 | |
RUN apt-get update | |
#current debian kernel feezes java | |
RUN apt-get dist-upgrade -y | |
RUN apt-get install ruby-full -y | |
RUN apt-get install -y --no-install-recommends apt-utils build-essential git ruby-dev zlib1g-dev | |
RUN apt-get install -y --no-install-recommends libncurses5:i386 libc6:i386 libstdc++6:i386 zlib1g:i386 wget unzip |
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
/Users/user/.rbenv/versions/2.2.2/bin/ruby -I"lib:test" "/Users/user/.rbenv/versions/2.2.2/lib/ruby/2.2.0/rake/rake_test_loader.rb" "./test_example.rb" "./test_example2.rb" | |
/Users/user/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/minitest-metadata-0.6.0/lib/minitest/metadata.rb:18:in `it': stack level too deep (SystemStackError) | |
from /Users/user/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/minitest-metadata-0.6.0/lib/minitest/metadata.rb:18:in `it' | |
from /Users/user/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/minitest-metadata-0.6.0/lib/minitest/metadata.rb:18:in `it' | |
from /Users/user/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/minitest-metadata-0.6.0/lib/minitest/metadata.rb:18:in `it' | |
from /Users/user/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/minitest-metadata-0.6.0/lib/minitest/metadata.rb:18:in `it' | |
from /Users/user/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/minitest-metadata-0.6.0/lib/minitest/metadata.rb:18:in `it' | |
from /Users/user/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/ |