Example #1
0
def test_all_the_way_async(gbkconfig, async_executor):
    filename = allplots.plan(gbkconfig, async_executor)[0]
    if which('ps2pdf'):
        assert filename == gbkconfig['pdf_filename']
    else:
        assert filename == gbkconfig['combined_ps_name']
    async_executor.result(filename, timeout=10)
Example #2
0
def test_all_the_way(gbkconfig, executor):
    filename = allplots.plan(gbkconfig, executor)[0]
    if which('ps2pdf'):
        assert filename == gbkconfig['pdf_filename']
    else:
        assert filename == gbkconfig['combined_ps_name']