manuskript/manuskript/tests/__init__.py
2017-11-19 00:54:11 +01:00

12 lines
234 B
Python

#!/usr/bin/env python
# --!-- coding: utf8 --!--
"""Tests."""
import pytest
# We need a qApplication to be running, or all the calls to qApp
# will throw a seg fault.
from PyQt5.QtWidgets import QApplication
app = QApplication([])