Skip to content

Instantly share code, notes, and snippets.

@gpfreitas
gpfreitas / pytest.md
Created June 3, 2018 17:42 — forked from kwmiebach/pytest.md
pytest cheat sheet

Usage

(Remember to create a symlink pytest for py.test)

pytest [options] [file_or_dir] [file_or_dir] ...

Help:

@gpfreitas
gpfreitas / sqltree.py
Created June 23, 2023 20:58 — forked from gocha/sqltree.py
Print parsed SQL statement as a tree (sqlparse with Python 3)
"""Print parsed SQL statement as a tree.
Uses Python 3 and sqlparse package.
"""
from typing import Iterator, Tuple
import argparse
import locale
import sys
import os