import path from 'path' const name = 'test' const cwd = process.env.TEST_CWD || process.cwd() + '/test/module/' const cpu = { type: 'perl', script: 'test.pl', params: '--train', } const gpu = { type: 'python', script: 'test.pl', params: '--test', } const live = { type: 'python', script: 'test.py', live: true, } export default { name, cwd, activities: { cpu, gpu, live, } }