pyqtgraph/tests/test.py
Luke Campagnola af59296231 Reorganized directory structure to be more standard
Started new SVG exporter
Merged updates from ACQ4
2012-12-25 00:43:31 -05:00

8 lines
306 B
Python

import unittest
import os, sys
## make sure this instance of pyqtgraph gets imported first
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
## all tests should be defined with this class so we have the option to tweak it later.
class TestCase(unittest.TestCase):
pass