diff --git a/examples/test_ExampleApp.py b/examples/test_ExampleApp.py deleted file mode 100644 index cddb539f..00000000 --- a/examples/test_ExampleApp.py +++ /dev/null @@ -1,11 +0,0 @@ -import initExample ## Add path to library (just for examples; you do not need this) - -import pyqtgraph as pg -from pyqtgraph.Qt import QtGui, QtCore - -from examples.ExampleApp import ExampleLoader - -loader = ExampleLoader() - -if __name__ == '__main__': - pg.exec() diff --git a/examples/test_examples.py b/examples/test_examples.py index a979c2e5..a4a51455 100644 --- a/examples/test_examples.py +++ b/examples/test_examples.py @@ -34,7 +34,7 @@ def buildFileList(examples, files=None): path = os.path.abspath(os.path.dirname(__file__)) -files = [("Example App", "test_ExampleApp.py")] +files = [("Example App", "RunExampleApp.py")] for ex in [utils.examples, utils.others]: files = buildFileList(ex, files) files = sorted(set(files))