mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-10 14:26:26 +00:00
988a13b872
* [Test] Official operations - deposits unit test * Allow ignoring deposits with invalid signature * We need stacktraces to debug windows 64 issue https://github.com/status-im/nim-beacon-chain/pull/408#issuecomment-529236359 * fix naming of unit test proc * Revert "We need stacktraces to debug windows 64 issue https://github.com/status-im/nim-beacon-chain/pull/408#issuecomment-529236359" This reverts commit 04b8b05162c523b73d9c5a4719f8e60c5092583f. * skip windows-64 in CI #435 * proposer slashing started to crash as well on win-64 #435
23 lines
1010 B
Nim
23 lines
1010 B
Nim
# beacon_chain
|
|
# Copyright (c) 2018 Status Research & Development GmbH
|
|
# Licensed and distributed under either of
|
|
# * MIT license (license terms in the root directory or at http://opensource.org/licenses/MIT).
|
|
# * Apache v2 license (license terms in the root directory or at http://www.apache.org/licenses/LICENSE-2.0).
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
# All non-pure SSZ tests that require the -d:ssz_testing
|
|
# to ignore invalid BLS signature in EF test vectors
|
|
# https://github.com/status-im/nim-beacon-chain/issues/374
|
|
|
|
import
|
|
./test_fixture_sanity_slots,
|
|
./test_fixture_sanity_blocks,
|
|
./test_fixture_operations_deposits,
|
|
./test_fixture_state_transition_epoch,
|
|
./test_fixture_operations_attestations,
|
|
./test_fixture_operations_attester_slashings,
|
|
./test_fixture_operations_block_header,
|
|
./test_fixture_operations_proposer_slashings,
|
|
./test_fixture_operations_transfer,
|
|
./test_fixture_operations_voluntary_exit
|