Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into streaming-page-staging
Browse files Browse the repository at this point in the history
  • Loading branch information
swelborn committed Oct 27, 2023
2 parents fcd5db8 + 1b21781 commit 3975ceb
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,9 @@ jobs:
run:
working-directory: backend/faust
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v3
- name: Install Ubuntu packages
run: |
sudo apt-get install -y \
Expand All @@ -29,14 +22,14 @@ jobs:
libbz2-dev \
liblz4-dev \
zlib1g-dev \
librocksdb-dev
python3-rocksdb
- name: Install dependencies
run: |
pip install -r requirements.base.txt -r requirements.job.txt -r requirements.dev.txt
# Install authlib separately as its not include in requirements as we are
# currently using a patched version in the docker image.
pip install authlib
# The requirements from requirements.base.txt minus rocksdb which
# is install as a debian package above
pip install faust-streaming pydantic[dotenv]==v1.10.10 numpy
pip install -r requirements.job.txt -r requirements.dev.txt
- name: Set PYTHONPATH
run: |
echo "PYTHONPATH=$GITHUB_WORKSPACE/backend/faust" >> $GITHUB_ENV
Expand Down

0 comments on commit 3975ceb

Please sign in to comment.