diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 667cf21..5513525 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: - python-version: [310, 311, 312] + python-version: [311, 312, 313] steps: - name: Checkout repository @@ -32,8 +32,6 @@ jobs: - name: Spin up container run: | sed -i "s/PYTHON_VERSION=.*/PYTHON_VERSION=${{ matrix.python-version }}/" '.env' - sed -i 's/PORT=.*/PORT=5002/' '.env' - echo "Building container for Python ${{ matrix.python-version }}." cat docker compose up -d diff --git a/pyproject.toml b/pyproject.toml index 0d59763..2e3459d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,7 +51,7 @@ show_error_codes = true pretty = true [[tool.mypy.overrides]] -module = "app.tests.*" +module = "svc.tests.*" ignore_errors = true #################################################