-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sync speed improvements Better isolation of benchmark tests Drop of unnecessary undefined variable initializations Separate replace function for type string regex variable Strict check for eimptiness of input, content or output variables Benchmark testing is now part of test suite README benchmark section update Better parallelization Async uses fast-glob streams to speed up replacing Replace async available in benchmark test suite README benchmark section update Benchmark test 'input as glob pattern' fix Better cross-platform process spawn handling in benchmarks Npm test script refactor fixes #17, #10, #19
- Loading branch information
Showing
6 changed files
with
256 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,24 @@ | ||
dist: trusty | ||
sudo: required | ||
language: node_js | ||
node_js: | ||
- "node" | ||
- "lts/*" | ||
cache: yarn | ||
matrix: | ||
include: | ||
- name: "Standard linting" | ||
script: yarn standard | ||
node_js: "lts/*" | ||
- name: "Unit tests & coverage" | ||
script: yarn test | ||
node_js: | ||
- "node" | ||
- "lts/*" | ||
- name: "Benchmark test - glob" | ||
script: travis_wait yarn test:benchmark:glob | ||
node_js: | ||
- "node" | ||
- "lts/*" | ||
- name: "Benchmark test - string" | ||
script: yarn test:benchmark:string | ||
node_js: | ||
- "node" | ||
- "lts/*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.