Skip to content

Fix popularity annotation as it causes weird results due to nested join in count #140

Fix popularity annotation as it causes weird results due to nested join in count

Fix popularity annotation as it causes weird results due to nested join in count #140

Workflow file for this run

name: django-oscar-elasticsearch
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ['3.11']
django-version: ['4.2']
steps:
- name: Configure sysctl limits
run: |
sudo swapoff -a
sudo sysctl -w vm.swappiness=1
sudo sysctl -w fs.file-max=262144
sudo sysctl -w vm.max_map_count=262144
- name: Runs Elasticsearch
uses: elastic/elastic-github-actions/elasticsearch@master
with:
stack-version: 8.15.0
security-enabled: false
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
pip install -e .[dev]
- name: Run linters
run: make lint
- name: Run Tests
run: make test