chore: Add ability to deal with temporary files generated by tests

The "install_nextflow" tests generate a new install of Nextflow every time
 they are run based on the "RUNNER_TEMP" environment variable. Deal with
this by adding our RUNNER_TEMP variable to the ava config and making sure
none of these installs get committed.
pull/77/head
parent d734edd2bc
commit 5534093b23

6
.gitignore vendored

@ -131,4 +131,8 @@ dist
# Ignore built ts files
__tests__/runner/*
lib/**/*
lib/**/*
# Testing garbage
.tmp
nxf-v*

@ -28,6 +28,9 @@
"extensions": [
"ts"
],
"environmentVariables": {
"RUNNER_TEMP": "./.tmp"
},
"rewritePaths": {
"src/": "lib/"
},

Loading…
Cancel
Save