gnucash/bindings/python/tests/runTests.py.in
Julian Wollrath a43b115a45 Bug 791831 - Add python3 support
This switches swig to use python 3 specific features when generating the
bindings, switches the build over to python 3 and makes the neccesary
python 2 to 3 conversions in the bindings and tests.
2018-03-17 15:10:00 -07:00

18 lines
414 B
Python
Executable File

#!@PYTHON@
import unittest
import os
os.environ["GNC_UNINSTALLED"] = "1"
from test_book import TestBook
from test_account import TestAccount
from test_split import TestSplit
from test_transaction import TestTransaction
from test_business import TestBusiness
from test_commodity import TestCommodity, TestCommodityNamespace
from test_numeric import TestGncNumeric
if __name__ == '__main__':
unittest.main()