system-tests dep conflict fix
Some checks failed
Test the stack. / Run unit tests (pull_request) Successful in 7m53s
Test the stack. / Run integration tests (pull_request) Failing after 49m44s

This commit is contained in:
Roy Crihfield 2024-08-06 20:16:56 -05:00
parent dd91a16eb9
commit cbbf54531f

View File

@ -102,11 +102,15 @@ jobs:
progress: false progress: false
- name: Run system tests - name: Run system tests
working-directory: ./system-tests working-directory: ./system-tests
# Work around dependency conflict in system-tests:
# web3 uses an older eth-account until (unreleased) v7
run: | run: |
pip install pytest pip3 install pytest
pip install -r requirements.txt pip3 install -r requirements.txt
pip3 install --no-deps 'eth-account>=0.12.3,<0.13'
pip3 install 'pydantic>=2.0.0'
# Skips tests that require Blob indexing # Skips tests that require Blob indexing
pytest -vv -m "not blob_db" python3 -m pytest -vv -m "not blob_db"
- name: Run testnet stack without statediff - name: Run testnet stack without statediff
env: env: