Skip to content

Event Fabric Online Tests #8

Event Fabric Online Tests

Event Fabric Online Tests #8

Workflow file for this run

name: Event Fabric Online Tests
on:
workflow_dispatch:
jobs:
download-and-store:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.11'] # Adjust Python versions as needed
steps:
- name: Download Storage DB
run: |
mkdir -p $HOME/.diaspora
wget --no-check-certificate 'https://docs.google.com/uc?export=download&id=${{ secrets.STORAGE_DB_FOR_TESTING }}' -O $HOME/.diaspora/storage.db
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install -U pip setuptools
- run: python -m pip install -U tox pytest
- name: Run tox
run: tox