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