Skip to content
Draft
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
24 changes: 4 additions & 20 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ commands:
parameters:
package:
type: string
steps:
steps:
- attach_workspace:
at: ~/bitcore
- use_node
Expand All @@ -75,19 +75,7 @@ commands:
command: |
nvm use default
npm run compile
npm run test:<< parameters.package >>
run_crypto_rpc:
description: Execute the test suite for crypto-rpc package
steps:
- attach_workspace:
at: ~/bitcore # ~/bitcore is the crypto-rpc package persisted from build-crypto-rpc job
- use_node
- run:
name: Run crypto-rpc tests
command: |
nvm use default
npm run test:ci

npm run coverage:<< parameters.package >>

jobs:
build:
Expand Down Expand Up @@ -160,7 +148,7 @@ jobs:
package: bitcore-node
bitcore-wallet-service:
executor: main
steps:
steps:
- run_test:
package: bitcore-wallet-service
bitcore-wallet-client:
Expand Down Expand Up @@ -223,11 +211,7 @@ jobs:
steps:
- run_test:
package: crypto-rpc
# crypto-rpc:
# executor: crypto-rpc
# steps:
# - run_crypto_rpc


workflows:
version: 2
build_and_test:
Expand Down
Loading