github.com/prysmaticlabs/prysm@v1.4.4/spectest/README.md (about)

     1  # Spec Tests
     2  
     3  Spec testing vectors: https://github.com/ethereum/eth2.0-spec-tests
     4  
     5  To run all `mainnet` spec tests:
     6  
     7  ```bash
     8  bazel test //... --test_tag_filters=spectest
     9  ```
    10  
    11  Minimal tests require `--define ssz=minimal` setting and are not triggered
    12  automatically when `//...` is selected. One can run minimal tests manually, though:
    13  
    14  ```bash
    15  bazel query 'tests(attr("tags", "minimal, spectest", //...))' | xargs bazel test --define ssz=minimal
    16  ```