bin/qgpibplotter

Thu, 24 May 2018 23:08:14 +0200

author
David Douard <david.douard@logilab.fr>
date
Thu, 24 May 2018 23:08:14 +0200
changeset 102
91713944ebb0
parent 40
1bbea188a7e5
permissions
-rwxr-xr-x

[prologix] implement more prologix commands and add API to register emulated devices

also refactor tests as generative tests using pytest's parametrized API.

#!/usr/bin/python
import sys, os
try:
    from pygpibtoolkit.plotter.qgpib_plotter import main
except ImportError:
    sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), ".."))
    from pygpibtoolkit.plotter.qgpib_plotter import main
main()

mercurial