only do unit tests for now
This commit is contained in:
parent
57b77384d7
commit
d43514cfa9
|
@ -84,7 +84,7 @@ jobs:
|
||||||
node-version: 18.15
|
node-version: 18.15
|
||||||
|
|
||||||
- name: Start Ethereum node with Codex contracts
|
- name: Start Ethereum node with Codex contracts
|
||||||
if: matrix.tests == 'contract' || matrix.tests == 'integration' || matrix.tests == 'all' || matrix.tests == 'orc'
|
if: matrix.tests == 'contract' || matrix.tests == 'integration' || matrix.tests == 'all'
|
||||||
working-directory: vendor/codex-contracts-eth
|
working-directory: vendor/codex-contracts-eth
|
||||||
env:
|
env:
|
||||||
MSYS2_PATH_TYPE: inherit
|
MSYS2_PATH_TYPE: inherit
|
||||||
|
@ -94,12 +94,12 @@ jobs:
|
||||||
|
|
||||||
## Part 2 Tests ##
|
## Part 2 Tests ##
|
||||||
- name: Contract tests
|
- name: Contract tests
|
||||||
if: matrix.tests == 'contract' || matrix.tests == 'all' || matrix.tests == 'orc'
|
if: matrix.tests == 'contract' || matrix.tests == 'all'
|
||||||
run: make -j${ncpu} testContracts
|
run: make -j${ncpu} testContracts
|
||||||
|
|
||||||
## Part 3 Tests ##
|
## Part 3 Tests ##
|
||||||
- name: Integration tests
|
- name: Integration tests
|
||||||
if: matrix.tests == 'integration' || matrix.tests == 'all' || matrix.tests == 'orc'
|
if: matrix.tests == 'integration' || matrix.tests == 'all'
|
||||||
run: make -j${ncpu} testIntegration
|
run: make -j${ncpu} testIntegration
|
||||||
|
|
||||||
coverage:
|
coverage:
|
||||||
|
|
Loading…
Reference in New Issue