Skip to content

Instantly share code, notes, and snippets.

View preetmishra's full-sized avatar

Preet Mishra preetmishra

View GitHub Profile

Work Product: Google Summer of Code 2020 with Zulip

I would like to express my sincere gratitude to my mentors, Zulip and Google for an incredible summer.

import pytest
@pytest.fixture(params=[
'First param',
'Second param (this will raise a KeyError exception)',
])
def fixture_with_more_than_one_param(request):
return request.param
@preetmishra
preetmishra / tasks.json
Created February 10, 2020 17:16
VSCode tasks.json for g++.
{
"version": "2.0.0",
"tasks": [
{
"label": "build & run",
"type": "shell",
"command": "g++",
"args": [
"${file}",
"&&",