Skip to content

Commit

Permalink
test: break NUTs apart
Browse files Browse the repository at this point in the history
  • Loading branch information
WillieRuemmele committed Oct 28, 2024
1 parent 6542c9c commit 6d56437
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
command:
- 'yarn test:nuts:package'
- 'yarn test:nuts:package:install'
- 'yarn test:nuts:package:create:delete'
- 'yarn test:nuts:package:installed:list'
- 'yarn test:nuts:package:list'
- 'yarn test:nuts:package:version'
- 'yarn test:nuts:package:version:promote'
# - 'yarn test:nuts:package1' disable because of the long-standing ORA bug
fail-fast: false
with:
Expand Down
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,12 @@
"prepare": "sf-install",
"test": "wireit",
"test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 -t 1800000 --parallel --jobs 20",
"test:nuts:package": "nyc mocha \"test/commands/package/*.nut.ts\" --slow 4500 --timeout 600000 --parallel --jobs 20",
"test:nuts:package:install": "nyc mocha \"test/commands/package/install.nut.ts\" --slow 4500 --timeout 600000",
"test:nuts:package:create:delete": "nyc mocha \"test/commands/package/packageCreateAndDelete.nut.ts\" --slow 4500 --timeout 600000",
"test:nuts:package:installed:list": "nyc mocha \"test/commands/package/packageInstalledList.nut.ts\" --slow 4500 --timeout 600000",
"test:nuts:package:list": "nyc mocha \"test/commands/package/packageList.nut.ts\" --slow 4500 --timeout 600000",
"test:nuts:package:version": "nyc mocha \"test/commands/package/packageVersion.nut.ts\" --slow 4500 --timeout 600000",
"test:nuts:package:version:promote": "nyc mocha \"test/commands/package/versionPromoteUpdate.nut.ts\" --slow 4500 --timeout 600000",
"test:nuts:package1": "nyc mocha \"test/commands/package1/*.nut.ts\" --slow 4500 --timeout 600000 --parallel --jobs 20",
"test:only": "wireit",
"version": "oclif readme"
Expand Down

0 comments on commit 6d56437

Please sign in to comment.