Skip to content

Commit

Permalink
ci: set session dir
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Sep 29, 2023
1 parent 5bb2b4b commit f0077c4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/perfScaleNut.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ jobs:
perf-scale-nuts:
strategy:
matrix:
# os: [ubuntu-latest, windows-latest]
os: [windows-latest]
os: [ubuntu-latest, windows-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
"repl": "node --inspect ./scripts/repl.js",
"test": "wireit",
"test:nuts": "mocha \"test/nuts/local/**/*.nut.ts\" --timeout 500000",
"test:nuts:scale": "mocha \"test/nuts/scale/lotsOfClasses.nut.ts\" --timeout 500000; mocha \"test/nuts/scale/lotsOfClassesOneDir.nut.ts\" --timeout 500000",
"test:nuts:scale": "mocha \"test/nuts/scale/eda.nut.ts\" --timeout 500000; mocha \"test/nuts/scale/lotsOfClasses.nut.ts\" --timeout 500000; mocha \"test/nuts/scale/lotsOfClassesOneDir.nut.ts\" --timeout 500000",
"test:nuts:suggest": "mocha \"test/nuts/suggestType/suggestType.nut.ts\" --timeout 10000",
"test:only": "wireit",
"test:registry": "mocha ./test/registry/registryCompleteness.test.ts --timeout 50000",
Expand Down
1 change: 1 addition & 0 deletions test/nuts/scale/lotsOfClasses.nut.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ describe(`handles ${classCount.toLocaleString()} classes (${(

before(async () => {
session = await TestSession.create({
sessionDir: 'lotsOfClasses',
project: {
name: 'lotsOfClasses',
},
Expand Down
3 changes: 2 additions & 1 deletion test/nuts/scale/lotsOfClassesOneDir.nut.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ describe(`handles ${classCount.toLocaleString()} classes (${(

before(async () => {
session = await TestSession.create({
sessionDir: 'lotsOfClassesOneDir',
project: {
name: 'lotsOfClasses',
name: 'lotsOfClassesOneDir',
},
devhubAuthStrategy: 'NONE',
});
Expand Down

0 comments on commit f0077c4

Please sign in to comment.