diff --git a/.forgejo/workflows/test.yaml b/.forgejo/workflows/test.yaml new file mode 100644 index 0000000..39f5cd6 --- /dev/null +++ b/.forgejo/workflows/test.yaml @@ -0,0 +1,30 @@ +name: Test + +on: + push: + branches: + - main + pull_request: + branches: + - main + workflow_call: + + +env: + SLIGRO_USERNAME: ${{ secrets.SLIGRO_USERNAME }} + SLIGRO_PASSWORD: ${{ secrets.SLIGRO_PASSWORD }} + +jobs: + + pytest: + runs-on: docker + container: + image: alpine:latest + steps: + - run: apk add nodejs py3-pip ruff + - uses: actions/checkout@v4 + - run: pip install -r requirements.txt --break-system-packages + + - run: pytest + + - run: ruff check diff --git a/inflatinator/revbank.py b/inflatinator/revbank.py index 8b81a57..d140939 100644 --- a/inflatinator/revbank.py +++ b/inflatinator/revbank.py @@ -2,7 +2,6 @@ from dataclasses import dataclass from decimal import Decimal, ROUND_UP from typing import Dict, Optional, List import logging -import re import scrapers import shlex @@ -79,7 +78,7 @@ def update_product_pricings(src): for line in src.split('\n'): try: product = Product.from_line(line) - except Exception as err: + except Exception: lines_out.append(line) continue diff --git a/inflatinator/scrapers.py b/inflatinator/scrapers.py index 82767e0..b94e4f9 100644 --- a/inflatinator/scrapers.py +++ b/inflatinator/scrapers.py @@ -6,7 +6,6 @@ import json import re import os import requests -import subprocess import logging from supermarktconnector.ah import AHConnector from typing import List diff --git a/inflatinator/scrapers_test.py b/inflatinator/scrapers_test.py index 02fd1bc..6ae9bc1 100644 --- a/inflatinator/scrapers_test.py +++ b/inflatinator/scrapers_test.py @@ -1,4 +1,4 @@ -from scrapers import * +from scrapers import ah_get_by_gtin, sligro_get_by_gtin, parse_content_description, Product def test_scrape_ah():