()
| 242 | |
| 243 | describe('app bytecode collection', () => { |
| 244 | function makeTempWorkPath() { |
| 245 | const dir = fs.mkdtempSync(path.join(os.tmpdir(), 'vc-py-compileall-')); |
| 246 | tmpDirs.push(dir); |
| 247 | return dir; |
| 248 | } |
| 249 | |
| 250 | it('collects bytecode only for included app sources', async () => { |
| 251 | const workPath = makeTempWorkPath(); |
no test coverage detected