Skip to content

fix(stream_io): Correctly implement readable()/seekable() again #1013

fix(stream_io): Correctly implement readable()/seekable() again

fix(stream_io): Correctly implement readable()/seekable() again #1013

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
run_tests:
name: Run tests
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.8'
cache: 'pip'
- name: Install dependencies
run: >
python -m pip install -e . &&
python -m pip install -r tests/requirements.txt
- name: Install Redis
run: sudo apt-get install -y redis-server
- name: Install libsodium
run: sudo apt-get install -y libsodium23
- name: Run tests
run: python -m unittest discover tests/ --verbose