Skip to content

Instantly share code, notes, and snippets.

View JoaquinAcuna97's full-sized avatar
🏠
Working from home

Joaquin Acuna JoaquinAcuna97

🏠
Working from home
View GitHub Profile
GRAPHQL_JWT = {
#...
"JWT_ALLOW_ANY_CLASSES": [
"graphql_auth.mutations.Register",
],
}
# Run this app with `python app.py` and
# visit http://127.0.0.1:8050/ in your web browser.
import dash
import dash_core_components as dcc
import dash_html_components as html
import plotly.express as px
import pandas as pd
app = dash.Dash(__name__)
floatingActionButton: Stack(
children: <Widget>[
Align(
alignment: Alignment.bottomLeft,
child: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: const Icon(Icons.add),
),
),
Feature: Counter
Scenario: Initial counter value is 0
Given the app is running
Then i see {'0'} text
Scenario: Plus button increase the counter value
Given the app is running
When i tap {Icons.add} icon
Then i see {'1'} text
Feature: Counter
Scenario: Initial counter value is 0
Given the app is running
Then i see {'0'} text
Scenario: Plus button increase the counter value
Given the app is running
When i tap {Icons.add} icon
Then i see {'1'} text
Feature: Counter
Scenario: Initial counter value is 0
Given the app is running
Then i see {'0'} text
import os
from flask import Flask
from generator import generator
app = Flask(__name__)
@app.route("/")
def generate_buzz():
page = """<html>
<head>
wily:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2-beta
with:
fetch-depth: 0
- uses: actions/checkout@v2-beta
with:
ref: refs/heads/master
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python application
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
import unittest
from generator import generator
def test_sample_single_word():
l = ('test', 'a', 'word')
word = generator.sample(l)
assert word in l
def test_sample_multiple_words():
l = ('test', 'multiple', 'words')