Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: test order
  • Loading branch information
rodrigopavezi committed Dec 10, 2024
commit 16c64337f6c6cdbd032c5d8cacab63859efea1fc
16 changes: 10 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
test-unit:
docker:
- *node_image
resource_class: xlarge
resource_class: large
working_directory: *working_directory
steps:
- attach_workspace:
Expand All @@ -108,6 +108,8 @@ jobs:
name: 'Test unit'
command: |
yarn test \
--ignore @requestnetwork/request-node \
--ignore @requestnetwork/ethereum-storage \
--ignore @requestnetwork/request-client.js \
--ignore @requestnetwork/smart-contracts \
--ignore @requestnetwork/payment-detection \
Expand All @@ -125,16 +127,12 @@ jobs:
path: packages/epk-cipher/reports/
- store_test_results:
path: packages/epk-decryption/reports/
- store_test_results:
path: packages/ethereum-storage/reports/
- store_test_results:
path: packages/lit-protocol-cipher/reports/
- store_test_results:
path: packages/multi-format/reports/
- store_test_results:
path: packages/request-logic/reports/
- store_test_results:
path: packages/request-node/reports/
- store_test_results:
path: packages/thegraph-data-access/reports/
- store_test_results:
Expand All @@ -151,7 +149,7 @@ jobs:
- *ganache_image
- *postgres_image
- *graph_image
resource_class: xlarge
resource_class: large
working_directory: *working_directory
steps:
- attach_workspace:
Expand All @@ -167,10 +165,14 @@ jobs:
name: 'Test request-client.js, smart-contracts, payment-detection and payment-processor'
command: |
yarn test \
--scope @requestnetwork/request-node \
--scope @requestnetwork/ethereum-storage \
--scope @requestnetwork/request-client.js \
--scope @requestnetwork/smart-contracts \
--scope @requestnetwork/payment-detection \
--scope @requestnetwork/payment-processor
- store_test_results:
path: packages/request-node/reports/
- store_test_results:
path: packages/request-client.js/reports/
- store_test_results:
Expand All @@ -179,6 +181,8 @@ jobs:
path: packages/payment-detection/reports/
- store_test_results:
path: packages/payment-processor/reports/
- store_test_results:
path: packages/ethereum-storage/reports/
test-integration-with-request-node:
docker:
- *node_image
Expand Down