Ejemplo n.º 1
0
import test_station
import station_config
import hardware_station_common.factory_test_gui as gui
import test_station.test_station_seacliff_paneltesting as test_station_paneltesting

# here we can override the station_config so that we don't have
# to monkey with it in the build system
station_config.load_station('seacliff_paneltesting')
# we just have to pass in the TestStation constructor for this specific station
# and the station_config
FACTORY_TEST_GUI = gui.FactoryTestGui(station_config, test_station_paneltesting.pancakemuniStation)
# enter the main loop
FACTORY_TEST_GUI.main_loop()
import test_station
import station_config
import hardware_station_common.factory_test_gui as gui

# here we can override the station_config so that we don't have
# to monkey with it in the build system
station_config.load_station('pancake_uniformity')
# we just have to pass in the TestStation constructor for this specific station
# and the station_config
FACTORY_TEST_GUI = gui.FactoryTestGui(station_config,
                                      test_station.pancakeuniformityStation)
# enter the main loop
FACTORY_TEST_GUI.main_loop()
Ejemplo n.º 3
0
import test_station
import station_config
import hardware_station_common.factory_test_gui as gui

# here we can override the station_config so that we don't have
# to monkey with it in the build system
station_config.load_station('project_station')
# we just have to pass in the TestStation constructor for this specific station
# and the station_config
FACTORY_TEST_GUI = gui.FactoryTestGui(station_config, test_station.projectstationStation)
# enter the main loop
FACTORY_TEST_GUI.main_loop()
Ejemplo n.º 4
0
import test_station
import station_config
import hardware_station_common.factory_test_gui as gui
import test_station.test_station_seacliff_mot as test_station_mot
import multiprocessing as mp
if __name__ == '__main__':

    mp.freeze_support()

    # here we can override the station_config so that we don't have
    # to monkey with it in the build system
    station_config.load_station('seacliff_mot')
    # we just have to pass in the TestStation constructor for this specific station
    # and the station_config
    FACTORY_TEST_GUI = gui.FactoryTestGui(station_config,
                                          test_station_mot.seacliffmotStation)
    # enter the main loop
    FACTORY_TEST_GUI.main_loop()
Ejemplo n.º 5
0
import test_station
import station_config
import hardware_station_common.factory_test_gui as gui
import test_station.test_station_pancake_offaxis as test_station_pancake_offaxis

# here we can override the station_config so that we don't have
# to monkey with it in the build system
station_config.load_station('pancake_offaxis')
# we just have to pass in the TestStation constructor for this specific station
# and the station_config
FACTORY_TEST_GUI = gui.FactoryTestGui(
    station_config, test_station_pancake_offaxis.pancakeoffaxisStation)
# enter the main loop
FACTORY_TEST_GUI.main_loop()
Ejemplo n.º 6
0
import test_station
import station_config
import hardware_station_common.factory_test_gui as gui

# here we can override the station_config so that we don't have
# to monkey with it in the build system
station_config.load_station('pancake_pixel')
# we just have to pass in the TestStation constructor for this specific station
# and the station_config
FACTORY_TEST_GUI = gui.FactoryTestGui(station_config,
                                      test_station.pancakepixelStation)
# enter the main loop
FACTORY_TEST_GUI.main_loop()
Ejemplo n.º 7
0
import test_station
import station_config
import hardware_station_common.factory_test_gui as gui
import test_station.test_station_seacliff_eeprom as test_station_eeprom

# here we can override the station_config so that we don't have
# to monkey with it in the build system
station_config.load_station('seacliff_eeprom')
# we just have to pass in the TestStation constructor for this specific station
# and the station_config
FACTORY_TEST_GUI = gui.FactoryTestGui(station_config, test_station_eeprom.seacliffeepromStation)
# enter the main loop
FACTORY_TEST_GUI.main_loop()