{{ product.name }}
- +{% with product.current_prices.0 as price %} {{ price.price_with_tax }} € {% endwith %}
diff --git a/.github/workflows/runtests.yml b/.github/workflows/runtests.yml index 672b842..fc50491 100644 --- a/.github/workflows/runtests.yml +++ b/.github/workflows/runtests.yml @@ -15,12 +15,12 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Setup dependencies - run: pip install -r requirements.test.txt + run: pip install uv && uv pip install -r pyproject.toml - name: Run tests env: DJANGO_SETTINGS_MODULE: config.settings DEBUG: True - run: pytest --cov --junitxml=junit.xml -o junit_family=legacy && coverage xml + run: uv run pytest --cov --junitxml=junit.xml -o junit_family=legacy && coverage xml - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4.0.1 with: diff --git a/web/templates/components/generic/toast.html b/web/templates/components/generic/toast.html deleted file mode 100644 index 6fb4974..0000000 --- a/web/templates/components/generic/toast.html +++ /dev/null @@ -1,26 +0,0 @@ -
{% with product.current_prices.0 as price %} {{ price.price_with_tax }} € {% endwith %}