#!/bin/bash

if [ -z "$@" ]; then
	args="--test --verbose"
else
	args=$@
fi

mkdir -p debug_config
export XDG_CONFIG_HOME="./debug_config"

/usr/bin/env python -m pithos.pithos $args
