Skip to content

NOT FOR MERGE: hack on zoe test #1629

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

Merged
merged 1 commit into from
Aug 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 67 additions & 0 deletions .github/workflows/test-all-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
branches: [master]
pull_request:

# set ESM_DISABLE_CACHE=true (will be JSON parsed)
jobs:
build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -110,64 +111,124 @@ jobs:
# run: yarn test
- name: yarn test (acorn-eventual-send)
run: cd packages/acorn-eventual-send && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (agoric-cli)
run: cd packages/agoric-cli && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (assert)
run: cd packages/assert && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (bundle-source)
run: cd packages/bundle-source && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (captp)
run: cd packages/captp && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (dapp-svelte-wallet/api)
run: cd packages/dapp-svelte-wallet/api && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (deployment)
run: cd packages/deployment && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (ERTP)
run: cd packages/ERTP && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (eventual-send)
run: cd packages/eventual-send && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (import-bundle)
run: cd packages/import-bundle && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (import-manager)
run: cd packages/import-manager && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (install-metering-and-ses)
run: cd packages/install-metering-and-ses && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (install-ses)
run: cd packages/install-ses && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (marshal)
run: cd packages/marshal && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (notifier)
run: cd packages/notifier && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (promise-kit)
run: cd packages/promise-kit && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (registrar)
run: cd packages/registrar && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (same-structure)
run: cd packages/same-structure && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (sharing-service)
run: cd packages/sharing-service && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (sparse-ints)
run: cd packages/sparse-ints && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (spawner)
run: cd packages/spawner && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (stat-logger)
run: cd packages/stat-logger && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (store)
run: cd packages/store && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (swing-store-lmdb)
run: cd packages/swing-store-lmdb && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (swing-store-simple)
run: cd packages/swing-store-simple && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (swingset-runner)
run: cd packages/swingset-runner && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (tame-metering)
run: cd packages/tame-metering && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (transform-eventual-send)
run: cd packages/transform-eventual-send && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (transform-metering)
run: cd packages/transform-metering && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (weak-store)
run: cd packages/weak-store && yarn test
env:
ESM_DISABLE_CACHE: true

##############
# Long-running tests are executed individually.
Expand Down Expand Up @@ -212,6 +273,8 @@ jobs:
${{ runner.os }}-go-
- name: yarn test (cosmic-swingset)
run: cd packages/cosmic-swingset && yarn test
env:
ESM_DISABLE_CACHE: true

test-swingset:
# BEGIN-TEST-BOILERPLATE
Expand Down Expand Up @@ -243,6 +306,8 @@ jobs:
# END-RESTORE-BOILERPLATE
- name: yarn test (SwingSet)
run: cd packages/SwingSet && yarn test
env:
ESM_DISABLE_CACHE: true

test-zoe:
# BEGIN-TEST-BOILERPLATE
Expand Down Expand Up @@ -274,3 +339,5 @@ jobs:
# END-RESTORE-BOILERPLATE
- name: yarn test (zoe)
run: cd packages/zoe && yarn test
env:
ESM_DISABLE_CACHE: true
4 changes: 2 additions & 2 deletions packages/zoe/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"scripts": {
"build": "yarn build-zcfBundle",
"test": "ava",
"test": "ava --verbose",
"build-zcfBundle": "node -r esm scripts/build-zcfBundle.js",
"lint-fix": "yarn lint --fix",
"lint-check": "yarn lint",
Expand Down Expand Up @@ -63,7 +63,7 @@
"ava": {
"files": ["test/**/test-*.js"],
"require": ["esm"],
"timeout": "2m"
"timeout": "10m"
},
"eslintConfig": {
"extends": [
Expand Down