# Customize the test machine: machine: # Environment variables for all build commands: environment: NODE_PATH: "$HOME/$CIRCLE_PROJECT_REPONAME/lib/node_modules" # Version of Node.js to use: node: version: 6 # Custom environment dependencies: dependencies: override: - 'nvm install node && nvm use node && npm update -g npm' # Custom test commands: test: override: - 'chmod +x ./tools/ci/circle/script && ./tools/ci/circle/script': parallel: true post: - 'chmod +x ./tools/ci/circle/after_script && ./tools/ci/circle/after_script': parallel: true