Skip to content

Commit

Permalink
Merge pull request #31 from sam-cogan/samcogan/revert-change
Browse files Browse the repository at this point in the history
Revert change to skip/include test
  • Loading branch information
sam-cogan authored Jan 16, 2024
2 parents 084e722 + a94436b commit 4550243
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arm-ttk-extension-xplatform/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"version": {
"Major": 1,
"Minor": 2,
"Patch": 2
"Patch": 3
},
"instanceNameFormat": "Run Azure RM TTK Tests (Cross Platform)",
"groups": [
Expand Down
4 changes: 2 additions & 2 deletions arm-ttk-extension-xplatform/ttk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ export async function run() {

if (includeTests) {
args.push("-includeTests");
args.push(`'${includeTests}'`);
args.push(includeTests);
}

if (skipTests) {
args.push("-skipTests");
args.push(`'${skipTests}'`);
args.push(skipTests);
}

if (mainTemplates) {
Expand Down

0 comments on commit 4550243

Please sign in to comment.