#!/usr/bin/env python3
"""
Script to run GTimeLog's tests from the source checkout
"""
import os
import sys

pkgdir = os.path.join(os.path.dirname(__file__), 'src')
sys.path.insert(0, pkgdir)

from gtimelog.tests import main
main()
