fix(data): parse HL l2Book "sz" so orderbook depth bars render #15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Backtest Determinism | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main, master] | |
| jobs: | |
| determinism: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| env: | |
| PYTHONHASHSEED: "0" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install -r requirements.txt | |
| - name: Provenance determinism checks | |
| run: python -m pytest -q tests/backtesting/test_provenance.py |