-
Notifications
You must be signed in to change notification settings - Fork 7
Add CircleCI Test Splitting Feature #76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 50 commits
cdd9b9f
818e23c
4a359f1
44d2b9e
4afa255
8c6516d
9f3f3e0
2152c68
2f1d0c7
682d5fc
5bc3edb
cb6cf90
9f5c3c4
c69d978
4767661
5d5976b
2c66ecc
07ab21d
bc2250b
da4f4e7
ca67d6f
42a2d9b
58394b3
bf1e107
b79c226
bbb89d7
422de6d
28568a8
db1018b
cfe823d
d2c0cd6
5425679
b612e94
34b685f
e90a861
9364ef5
d67add4
db9243c
313fa9c
e833cd0
d2062eb
40683b6
2046013
4066c58
13aad34
dc2faa0
59de304
3615911
3818b0f
e7956af
2ecf54c
5fa8365
1b1ac53
0955fe2
30d5879
92e6e95
2b5177f
dbd0ed0
aefea5b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -60,6 +60,14 @@ if [[ "$os" = CYGWIN* || "$os" = MINGW* || "$os" = MSYS* ]]; then | |
| binext=".exe" | ||
| fi | ||
|
|
||
| selectByName=$(eval echo "$PARAM_SELECT_BY_NAME" | awk '{ | ||
| for(i=1; i<=NF; i++) { | ||
| gsub(/\047/, "\047\047", $i); | ||
| printf "\047%s\047%s", $i, (i==NF ? "" : ", "); | ||
|
||
| } | ||
| }') | ||
| selectByName="{$selectByName}" | ||
|
|
||
| "${tmpdir}/bin/run-matlab-command$binext" "\ | ||
| addpath('${gendir}/scriptgen');\ | ||
| testScript = genscript('Test',\ | ||
|
|
@@ -76,6 +84,7 @@ fi | |
| 'PDFTestReport','${PARAM_TEST_RESULTS_PDF}',\ | ||
| 'Strict',${PARAM_STRICT},\ | ||
| 'UseParallel',${PARAM_USE_PARALLEL},\ | ||
| 'SelectByName', $selectByName,\ | ||
| 'OutputDetail','${PARAM_OUTPUT_DETAIL}',\ | ||
| 'LoggingLevel','${PARAM_LOGGING_LEVEL}');\ | ||
| disp('Running MATLAB script with contents:');\ | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.